/** Shopify CDN: Minification failed

Line 13504:20 Unexpected "{"
Line 13504:29 Expected ":"
Line 13504:36 Unexpected "{"
Line 13509:20 Unexpected "{"
Line 13509:29 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:pj_announcementbar (INDEX:0) */
.pj-ab {
  display: block;
  width: 100%;
  background-color: var(--pj-ab-bg, var(--accent, #2c2c2c));
  color: var(--pj-ab-fg, #ffffff);
  padding-block: var(--pj-ab-py, 8px);
  padding-inline: 1rem;
}

.pj-ab[data-template="primary"]    { --pj-ab-bg: var(--accent, #C1694F); --pj-ab-fg: #ffffff; }
.pj-ab[data-template="secondary"]  { --pj-ab-bg: var(--secondary, #F5F1EC); --pj-ab-fg: var(--secondary-foreground, #2C2C2C); }
.pj-ab[data-template="dark"]       { --pj-ab-bg: var(--foreground, #2C2C2C); --pj-ab-fg: var(--background, #FAF8F5); }
.pj-ab[data-template="outline"]    {
  --pj-ab-bg: transparent;
  --pj-ab-fg: var(--foreground, #2C2C2C);
  border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.1));
}
.pj-ab[data-template="garden"]      { --pj-ab-bg: var(--brand-medium-green, #3e6533); --pj-ab-fg: #ffffff; }
.pj-ab[data-template="warehouse"]   { --pj-ab-bg: var(--brand-yellow, #fddd00); --pj-ab-fg: var(--brand-dark-blue, #263543); }
.pj-ab[data-template="clearance"]   { --pj-ab-bg: var(--brand-dark-red, #b52025); --pj-ab-fg: #ffffff; }
.pj-ab[data-template="memorial"]    { --pj-ab-bg: var(--brand-dark-blue, #263543); --pj-ab-fg: #ffffff; }
.pj-ab[data-template="winter"]      { --pj-ab-bg: var(--brand-light-blue, #4488bc); --pj-ab-fg: var(--brand-dark-blue, #263543); }
.pj-ab[data-template="fathers-day"] { --pj-ab-bg: var(--brand-brown, #502d1e); --pj-ab-fg: #ffffff; }

.pj-ab__container {
  position: relative;
  max-width: var(--pj-ab-max-width, 1280px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pj-ab__main {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

.pj-ab__text,
.pj-ab__slide {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--pj-ab-font-size, 10px);
  letter-spacing: var(--pj-ab-tracking, 0.15em);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.pj-ab__text strong,
.pj-ab__slide strong {
  font-weight: var(--font-weight-medium, 600);
}

.pj-ab__text em,
.pj-ab__slide em {
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.pj-ab__link {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .pj-ab__link:hover {
    text-decoration: underline;
    text-underline-offset: 0.25em;
  }
}
.pj-ab__link:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

.pj-ab__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--pj-ab-gap, 48px);
  width: 100%;
}

.pj-ab__divider {
  display: inline-block;
  flex: 0 0 auto;
  color: inherit;
  opacity: 0.5;
}
.pj-ab__divider--dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}
.pj-ab__divider--line {
  width: 1px; height: 12px;
  background-color: currentColor;
  opacity: 0.4;
}
.pj-ab__divider--slash {
  width: 1px; height: 14px;
  background-color: currentColor;
  transform: rotate(20deg);
  opacity: 0.45;
}
.pj-ab__divider--diamond {
  width: 5px; height: 5px;
  background-color: currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
}
.pj-ab__divider--sparkle {
  width: 10px; height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  background-color: transparent;
}
.pj-ab__divider--sparkle svg {
  width: 100%; height: 100%;
  display: block;
}

.pj-ab__carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  min-height: 15px;
}

.pj-ab__viewport {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.pj-ab__slide {
  padding-inline: 2rem;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pj-ab__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  inset: auto;
}
.pj-ab__slide.is-exiting {
  opacity: 0;
  transform: translateY(-10px);
}

.pj-ab__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .pj-ab__nav:hover { opacity: 0.7; }
}
.pj-ab__nav:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}
.pj-ab__nav svg { width: 14px; height: 14px; display: block; }
.pj-ab__nav--prev { left: 0; }
.pj-ab__nav--next { right: 0; }

.pj-ab__placeholder {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--pj-ab-font-size, 10px);
  letter-spacing: var(--pj-ab-tracking, 0.15em);
  text-transform: uppercase;
  opacity: 0.6;
  padding-block: 0.25rem;
}

.pj-ab__countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--pj-ab-font-size, 10px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.pj-ab__cd-icon { width: 12px; height: 12px; opacity: 0.8; }
.pj-ab__cd-label { opacity: 0.85; font-weight: var(--font-weight-medium, 500); }

.pj-ab__countdown--minimal {
  opacity: 0.75;
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: 0.08em;
}

.pj-ab__countdown--compact {
  font-weight: 600;
  gap: 6px;
}

.pj-ab__countdown--boxed {
  gap: 4px;
  text-transform: none;
  letter-spacing: 0;
  align-items: flex-start;
}

.pj-ab__countdown--boxed .pj-ab__cd-label {
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 2px;
}

.pj-ab__cd-group { display: inline-flex; align-items: flex-start; gap: 4px; }

.pj-ab__cd-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.pj-ab__cd-box-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 4px;
  border-radius: var(--radius-sm, 4px);
  background-color: rgba(255, 255, 255, 0.18);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.pj-ab__cd-box-label {
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}
.pj-ab__cd-sep {
  align-self: center;
  margin-top: -10px;
  font-weight: 600;
  opacity: 0.45;
}

.pj-ab[data-template="warehouse"] .pj-ab__cd-box-value,
.pj-ab[data-template="winter"] .pj-ab__cd-box-value {
  background-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .pj-ab__row--desktop { display: none; }

  .pj-ab__slide {
    white-space: normal;
    line-height: 1.35;
    padding-inline: 1.5rem;
    text-overflow: clip;
  }
}
@media (min-width: 768px) {
  .pj-ab__carousel--mobile { display: none; }
  .pj-ab__container {
    flex-direction: row;
    justify-content: center;
  }
  .pj-ab__main {
    flex: 1 1 auto;
  }
  .pj-ab__countdown {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .pj-ab__countdown--boxed {
    transform: translateY(-50%);
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-ab__slide { transition: none; }
  .pj-ab__nav { transition: none; }
}
/* END_SECTION:pj_announcementbar */

/* START_SECTION:pj_bannerproductcards (INDEX:1) */
.pj-bpc {
  position: relative;
  width: 100%;
  display: block;
  background: #2d4a3e;
  background: var(--pj-bpc-bg, #2d4a3e);
  color: #faf8f5;
  color: var(--pj-bpc-text, #faf8f5);
  font-family: 'Rubik', system-ui, sans-serif;
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  overflow: hidden;
}

.pj-bpc__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pj-bpc__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pj-bpc__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pj-bpc-bg-focal, center center);
  display: block;
}

@media (max-width: 767px) {
  .pj-bpc__bg-img {
    object-position: var(--pj-bpc-bg-focal-mobile, center center);
  }
}

.pj-bpc__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--pj-bpc-overlay-color, #000000);
  opacity: var(--pj-bpc-overlay-opacity, 0);
  pointer-events: none;
}

.pj-bpc__inner {
  position: relative;
  z-index: 1;
}

.pj-bpc--theme-green {
  --pj-bpc-bg: #2d4a3e;
  --pj-bpc-text: #faf8f5;
  --pj-bpc-accent: #c1694f;
  --pj-bpc-muted: rgba(250, 248, 245, 0.62);
  --pj-bpc-chip-bg: rgba(250, 248, 245, 0.08);
}

.pj-bpc--theme-blue {
  --pj-bpc-bg: #1e3a5f;
  --pj-bpc-text: #f5f0e8;
  --pj-bpc-accent: #d4a574;
  --pj-bpc-muted: rgba(245, 240, 232, 0.62);
  --pj-bpc-chip-bg: rgba(245, 240, 232, 0.08);
}

.pj-bpc--theme-yellow {
  --pj-bpc-bg: #c8a04c;
  --pj-bpc-text: #1f1a14;
  --pj-bpc-accent: #7b4422;
  --pj-bpc-muted: rgba(31, 26, 20, 0.7);
  --pj-bpc-chip-bg: rgba(31, 26, 20, 0.08);
}

.pj-bpc--theme-brown {
  --pj-bpc-bg: #3e2e20;
  --pj-bpc-text: #f5f0e8;
  --pj-bpc-accent: #d4a574;
  --pj-bpc-muted: rgba(245, 240, 232, 0.62);
  --pj-bpc-chip-bg: rgba(245, 240, 232, 0.08);
}

.pj-bpc--theme-red {
  --pj-bpc-bg: #7a2424;
  --pj-bpc-text: #f5f0e8;
  --pj-bpc-accent: #d4a574;
  --pj-bpc-muted: rgba(245, 240, 232, 0.62);
  --pj-bpc-chip-bg: rgba(245, 240, 232, 0.08);
}

.pj-bpc--theme-neutral {
  --pj-bpc-bg: #f5f0e8;
  --pj-bpc-text: #1f1a14;
  --pj-bpc-accent: #c1694f;
  --pj-bpc-muted: rgba(31, 26, 20, 0.68);
  --pj-bpc-chip-bg: rgba(31, 26, 20, 0.08);
}

.pj-bpc__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  max-width: var(--pj-bpc-max-width, 1280px);
  margin: 0 auto;
  padding: 48px 24px;
  padding: var(--pj-bpc-pad-y-m, 48px) 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-bpc__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding: 80px 56px;
    padding: var(--pj-bpc-pad-y-d, 80px) 56px;
  }
}

.pj-bpc__left {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  max-width: 540px;
}

.pj-bpc__right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pj-bpc__right {
    margin: 0;
    width: 280px;
  }
}

.pj-bpc__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  color: var(--pj-bpc-text, rgba(255, 255, 255, 0.72));
  opacity: 0.85;
}

.pj-bpc__eyebrow-dash {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}

.pj-bpc__eyebrow-text {
  white-space: nowrap;
}

.pj-bpc__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin: 0 0 22px 0;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(193, 105, 79, 0.18);
  background: color-mix(in srgb, var(--pj-bpc-accent, #c1694f) 18%, transparent);
  border: 1px solid rgba(193, 105, 79, 0.42);
  border: 1px solid color-mix(in srgb, var(--pj-bpc-accent, #c1694f) 42%, transparent);
  color: #c1694f;
  color: var(--pj-bpc-accent, #c1694f);
}

.pj-bpc__badge-icon {
  font-size: 0.75rem;
  line-height: 1;
}

.pj-bpc__heading {
  font-family: 'EB Garamond', serif;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 400;
  font-size: 2.5rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: inherit;
  margin: 0 0 22px 0;
}

.pj-bpc__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  color: var(--pj-bpc-muted, rgba(255, 255, 255, 0.7));
  max-width: 22em;
  margin: 0 0 28px 0;
}

.pj-bpc__body p {
  margin: 0 0 0.75em 0;
}

.pj-bpc__body p:last-child {
  margin-bottom: 0;
}

.pj-bpc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px 0;
  padding: 0;
  list-style: none;
}

.pj-bpc__chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  background: var(--pj-bpc-chip-bg, rgba(255, 255, 255, 0.06));
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: inherit;
  opacity: 0.88;
}

.pj-bpc__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  padding: 13px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  background: #c1694f;
  background: var(--pj-bpc-accent, #c1694f);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.pj-bpc__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline: 2px solid var(--pj-bpc-text, #ffffff);
  outline-offset: 3px;
}

@media (hover: hover) {
  .pj-bpc__cta:hover {
    filter: brightness(0.92);
    transform: translateY(-1px);
  }
}

.pj-bpc__cta-icon {
  flex-shrink: 0;
}

.pj-bpc__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0 0;
  padding: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  color: var(--pj-bpc-muted, rgba(255, 255, 255, 0.5));
  opacity: 0.85;
}

.pj-bpc__stat-sep {
  opacity: 0.5;
}

.pj-bpc__empty {
  padding: 2rem;
  text-align: center;
  color: var(--pj-bpc-muted, rgba(255, 255, 255, 0.65));
  font-size: 0.875rem;
}

.pj-bpc__rotator {
  display: block;
  position: relative;
  width: 100%;
}

.pj-bpc__cards {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
  background: #ffffff;
  background: var(--pj-bpc-card-bg, #ffffff);
}

.pj-bpc__rotator--multi .pj-bpc__cards {
  /* Stack cards on top of each other so the wrapper sizes to the active card. */
  display: grid;
  grid-template-areas: "stack";
}

.pj-bpc__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #ffffff;
  background: var(--pj-bpc-card-bg, #ffffff);
  color: #2c2c2c;
  color: var(--pj-bpc-card-text, #2c2c2c);
}

.pj-bpc__rotator--multi .pj-bpc__card {
  grid-area: stack;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.pj-bpc__rotator--multi .pj-bpc__card.is-active,
.pj-bpc__rotator--multi .pj-bpc__card.is-exiting {
  visibility: visible;
}

.pj-bpc__rotator--multi .pj-bpc__card.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.pj-bpc__rotator--multi .pj-bpc__card.is-exiting {
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.pj-bpc__card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f2efe9;
}

.pj-bpc--card-square .pj-bpc__card-media {
  aspect-ratio: 1 / 1;
}

.pj-bpc__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.pj-bpc__card-image--placeholder {
  background: linear-gradient(135deg, #efeae0 0%, #d9d2c4 100%);
}

@media (hover: hover) {
  .pj-bpc__card-media:hover .pj-bpc__card-image {
    transform: scale(1.04);
  }
}

.pj-bpc__card-save {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 2px;
  background: #c25230;
  background: var(--pj-bpc-save-bg, #c25230);
  color: #ffffff;
  color: var(--pj-bpc-save-fg, #ffffff);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pj-bpc__card-seasonal {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #3a5a3a;
  background: var(--pj-bpc-seasonal-bg, #3a5a3a);
  color: #b8d4a8;
  color: var(--pj-bpc-seasonal-fg, #b8d4a8);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pj-bpc__card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
}

.pj-bpc__card-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 8px 0;
  color: #c25230;
  color: var(--pj-bpc-accent, #c25230);
}

.pj-bpc__card-stars {
  display: inline-flex;
  gap: 2px;
  line-height: 0;
}

.pj-bpc__card-star {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  line-height: 0;
}

.pj-bpc__card-star-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pj-bpc__card-star-icon--bg {
  fill: color-mix(in srgb, var(--pj-bpc-accent, #c25230) 22%, transparent);
}

.pj-bpc__card-star-icon--fg {
  fill: var(--pj-bpc-accent, #c25230);
  clip-path: inset(0 100% 0 0);
}

.pj-bpc__card-star--half .pj-bpc__card-star-icon--fg {
  clip-path: inset(0 50% 0 0);
}

.pj-bpc__card-star--filled .pj-bpc__card-star-icon--fg {
  clip-path: inset(0);
}

.pj-bpc__card-rating-value {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pj-bpc-card-text, #2c2c2c);
  margin-left: 4px;
  font-variant-numeric: tabular-nums;
}

.pj-bpc__card-rating-count {
  font-size: 0.6875rem;
  color: #717182;
  color: var(--pj-bpc-card-muted, #717182);
  margin-left: 2px;
}

.pj-bpc__card-price--sale {
  color: var(--pj-bpc-accent, #c25230);
}

.pj-bpc__card-title {
  font-family: 'EB Garamond', serif;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.25;
  margin: 0 0 8px 0;
  color: #2c2c2c;
  color: var(--pj-bpc-card-text, #2c2c2c);
}

.pj-bpc__card-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 12px 0;
}

.pj-bpc__card-price {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2c2c2c;
  color: var(--pj-bpc-card-text, #2c2c2c);
}

.pj-bpc__card-compare {
  font-size: 0.8125rem;
  color: #9e9288;
  color: var(--pj-bpc-card-muted, #9e9288);
  text-decoration: line-through;
}

.pj-bpc__card-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 4px;
}

.pj-bpc__card-cta {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 2px;
  background: #1e2d1e;
  background: var(--pj-bpc-card-cta-bg, #1e2d1e);
  color: #fcfaf6;
  color: var(--pj-bpc-card-cta-fg, #fcfaf6);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.pj-bpc__card-cta:focus-visible {
  outline: 2px solid #c25230;
  outline: 2px solid var(--pj-bpc-accent, #c25230);
  outline-offset: 2px;
}

@media (hover: hover) {
  .pj-bpc__card-cta:hover {
    background: var(--pj-bpc-card-cta-bg-hover, #3a5a3a);
    color: var(--pj-bpc-card-cta-fg-hover, #fcfaf6);
  }
}

.pj-bpc__card-zoom {
  flex: 0 0 auto;
  width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid rgba(30, 45, 30, 0.15);
  background: rgba(30, 45, 30, 0.08);
  color: #1e2d1e;
  text-decoration: none;
  transition: background-color 150ms ease;
}

.pj-bpc__card-zoom:focus-visible {
  outline: 2px solid #c25230;
  outline: 2px solid var(--pj-bpc-accent, #c25230);
  outline-offset: 2px;
}

@media (hover: hover) {
  .pj-bpc__card-zoom:hover {
    background: rgba(30, 45, 30, 0.16);
  }
}

.pj-bpc__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  width: 100%;
}

.pj-bpc__dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.pj-bpc__dot {
  width: 18px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.pj-bpc__dot-inner {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  background: color-mix(in srgb, var(--pj-bpc-text, #ffffff) 35%, transparent);
  transition: background-color 200ms ease, width 200ms ease;
}

.pj-bpc__dot.is-active .pj-bpc__dot-inner {
  width: 18px;
  background: #ffffff;
  background: var(--pj-bpc-text, #ffffff);
}

.pj-bpc__dot:focus-visible {
  outline: 2px solid var(--pj-bpc-accent, #c1694f);
  outline-offset: 3px;
  border-radius: 999px;
}

@media (hover: hover) {
  .pj-bpc__dot:hover .pj-bpc__dot-inner {
    background: color-mix(in srgb, var(--pj-bpc-text, #ffffff) 85%, transparent);
  }
}

.pj-bpc__arrows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pj-bpc__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  background: color-mix(in srgb, var(--pj-bpc-text, #ffffff) 12%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border: 1px solid color-mix(in srgb, var(--pj-bpc-text, #ffffff) 22%, transparent);
  color: #ffffff;
  color: var(--pj-bpc-text, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pj-bpc__arrow:focus-visible {
  outline: 2px solid var(--pj-bpc-accent, #c1694f);
  outline-offset: 3px;
}

@media (hover: hover) {
  .pj-bpc__arrow:hover {
    background: color-mix(in srgb, var(--pj-bpc-text, #ffffff) 22%, transparent);
    border-color: color-mix(in srgb, var(--pj-bpc-text, #ffffff) 45%, transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-bpc__card,
  .pj-bpc__card-image,
  .pj-bpc__cta,
  .pj-bpc__card-cta,
  .pj-bpc__card-zoom,
  .pj-bpc__arrow,
  .pj-bpc__dot-inner {
    transition: none;
  }
  .pj-bpc__card-media:hover .pj-bpc__card-image,
  .pj-bpc__cta:hover {
    transform: none;
  }
}

section.shopify-section.shopify-section--pj-banner-cards {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_bannerproductcards */

/* START_SECTION:pj_blueribbondeals (INDEX:2) */
.pj-brd {
  width: 100%;
  box-sizing: border-box;
  padding: var(--pj-brd-out-y-m, 16px) var(--pj-brd-out-x-m, 16px);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  display: flex;
  justify-content: center;
}

/* Full-width: navy background spans edge to edge; content stays centered. */
.pj-brd.pj-brd--full {
  padding-left: 0;
  padding-right: 0;
}

.pj-brd--full .pj-brd__banner {
  max-width: none;
  width: 100%;
  border-radius: 0;
}

.pj-brd--full .pj-brd__inner {
  width: 100%;
  max-width: var(--pj-brd-max-width, 1400px);
  margin-left: auto;
  margin-right: auto;
}

.pj-brd__banner {
  position: relative;
  width: 100%;
  max-width: var(--pj-brd-max-width, 1400px);
  min-height: var(--pj-brd-min-h-m, 0px);
  padding: var(--pj-brd-pad-y-m, 28px) var(--pj-brd-pad-x-m, 20px);
  box-sizing: border-box;
  border-radius: var(--pj-brd-radius, 12px);
  overflow: hidden;
  isolation: isolate;
  color: var(--pj-brd-text, #ffffff);
  background-color: var(--pj-brd-bg-1, #0a1a4f);
  background-image:
    radial-gradient(120% 130% at 28% 8%, color-mix(in srgb, var(--pj-brd-bg-2, #123a9e) 72%, transparent), transparent 60%),
    linear-gradient(165deg, var(--pj-brd-bg-1, #0a1a4f), color-mix(in srgb, var(--pj-brd-bg-1, #0a1a4f) 78%, black 22%));
}

.pj-brd__img {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  display: none;
  max-width: 34%;
  pointer-events: none;
}

.pj-brd__img--left { left: 0; }
.pj-brd__img--right { right: 0; }

.pj-brd .pj-brd__img-el {
  height: 100% !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.pj-brd__img--left .pj-brd__img-el { object-position: left center; }
.pj-brd__img--right .pj-brd__img-el { object-position: right center; }

@media (min-width: 768px) {
  .pj-brd__img { display: block; }
}

.pj-brd__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pj-brd__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-width: 0;
}

.pj-brd__ribbon {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 7px 26px;
  background: var(--pj-brd-ribbon-bg, #2f6bf3);
  color: var(--pj-brd-ribbon-fg, #ffffff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 50%, 100% 100%, 0 100%, 11px 50%);
}

.pj-brd__headline-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pj-brd__lead {
  margin: 0;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.pj-brd__headline {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: var(--pj-brd-h-size-m, 44px);
}

.pj-brd__subhead {
  margin: 2px 0 0;
  font-size: clamp(0.85rem, 3.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  text-wrap: balance;
}

.pj-brd__end {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2px 0 0;
  color: var(--pj-brd-accent, #5c8df0);
}

.pj-brd__end-text {
  font-size: clamp(0.8rem, 3vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pj-brd__end-line {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: currentColor;
  opacity: 0.85;
  flex-shrink: 0;
}

.pj-brd__divider {
  display: none;
  background: var(--pj-brd-accent, #5c8df0);
  opacity: 0.5;
}

.pj-brd__ctas {
  display: block;
  width: 100%;
}

.pj-brd__cta-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.pj-brd__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 20px;
  border-radius: var(--pj-brd-cta-radius, 8px);
  text-decoration: none;
  color: var(--pj-brd-cta-fg, #ffffff);
  background: linear-gradient(180deg, color-mix(in srgb, var(--pj-brd-cta-bg, #1e55e6) 86%, white 14%), var(--pj-brd-cta-bg, #1e55e6));
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease, gap 200ms ease;
}

.pj-brd__cta[aria-disabled="true"] { cursor: default; }

.pj-brd__cta-icon {
  width: 22px !important;
  height: 22px !important;
  flex: 0 0 auto;
  display: inline-block;
}

.pj-brd__cta-label {
  flex: 0 1 auto;
  min-width: 0;
}

.pj-brd__cta-arrow {
  width: 18px !important;
  height: 18px !important;
  margin-left: auto;
  flex: 0 0 auto;
  display: inline-block;
  transition: transform 200ms ease;
}

.pj-brd__cta:focus-visible {
  outline: 2px solid var(--pj-brd-text, #ffffff);
  outline-offset: 3px;
}

@media (hover: hover) {
  .pj-brd__cta[href]:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 6px 18px color-mix(in srgb, black 28%, transparent);
    gap: 16px;
  }
  .pj-brd__cta[href]:hover .pj-brd__cta-arrow { transform: translateX(4px); }
}

.pj-brd__cta-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.pj-brd__nav-btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 6px;
  color: var(--pj-brd-text, #ffffff);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 200ms ease, transform 150ms ease;
}

@media (hover: hover) {
  .pj-brd__nav-btn:hover { opacity: 1; }
}

.pj-brd__nav-btn:active { transform: scale(0.92); }

.pj-brd__nav-btn:focus-visible {
  outline: 1.5px solid currentColor;
  outline-offset: 2px;
  border-radius: 2px;
}

.pj-brd__nav-icon {
  width: 16px !important;
  height: 16px !important;
  display: block;
}

.pj-brd__dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pj-brd__dot {
  appearance: none;
  -webkit-appearance: none;
  background: var(--pj-brd-text, #ffffff);
  border: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 250ms ease, width 300ms cubic-bezier(0.45, 0, 0.55, 1);
}

@media (hover: hover) {
  .pj-brd__dot:hover { opacity: 0.75; }
}

.pj-brd__dot.is-active {
  opacity: 1;
  width: 22px;
}

.pj-brd__dot:focus-visible {
  outline: 1.5px solid currentColor;
  outline-offset: 3px;
}

/* ---- Mobile rotator ---- */
@media (max-width: 767px) {
  .pj-brd__ctas--m-rotator .pj-brd__cta-track {
    display: grid;
    grid-template-areas: "stack";
  }
  .pj-brd__ctas--m-rotator .pj-brd__cta-track .pj-brd__cta {
    grid-area: stack;
    opacity: 0;
    pointer-events: none;
    transition: opacity 450ms ease;
  }
  .pj-brd__ctas--m-rotator .pj-brd__cta-track .pj-brd__cta.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .pj-brd__ctas--m-rotator .pj-brd__cta-nav { display: flex; }
}

/* ---- Desktop layout ---- */
@media (min-width: 768px) {
  .pj-brd {
    padding: var(--pj-brd-out-y-d, 32px) var(--pj-brd-out-x-d, 32px);
  }
  .pj-brd__banner {
    min-height: var(--pj-brd-min-h-d, 0px);
    padding: var(--pj-brd-pad-y-d, 28px) var(--pj-brd-pad-x-d, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .pj-brd__headline { font-size: var(--pj-brd-h-size-d, 72px); }

  .pj-brd .pj-brd__inner--d-stack {
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .pj-brd__inner--d-stack .pj-brd__copy { flex: 1.5 1 0; }
  .pj-brd__inner--d-stack .pj-brd__ctas { flex: 1 1 0; }
  .pj-brd__inner--d-stack .pj-brd__cta-track { flex-direction: column; }
  .pj-brd__inner--d-stack .pj-brd__divider {
    display: block;
    width: 1px;
    align-self: stretch;
    min-height: 64px;
    flex: 0 0 auto;
  }

  .pj-brd .pj-brd__inner--d-row_beside {
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .pj-brd__inner--d-row_beside .pj-brd__copy { flex: 1 1 0; }
  .pj-brd__inner--d-row_beside .pj-brd__ctas { flex: 1.5 1 0; min-width: 0; }
  .pj-brd__inner--d-row_beside .pj-brd__cta-track {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
  }
  .pj-brd__inner--d-row_beside .pj-brd__cta {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 14px;
    gap: 8px;
    letter-spacing: 0.06em;
    font-size: 12px;
  }
  .pj-brd__inner--d-row_beside .pj-brd__cta-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .pj-brd__inner--d-row_beside .pj-brd__cta-icon {
    width: 18px !important;
    height: 18px !important;
  }
  .pj-brd__inner--d-row_beside .pj-brd__cta-arrow {
    width: 14px !important;
    height: 14px !important;
  }
  .pj-brd__inner--d-row_beside .pj-brd__divider {
    display: block;
    width: 1px;
    align-self: stretch;
    min-height: 64px;
    flex: 0 0 auto;
  }

  .pj-brd .pj-brd__inner--d-row {
    flex-direction: column !important;
    align-items: center;
    gap: 22px;
  }
  .pj-brd__inner--d-row .pj-brd__cta-track {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .pj-brd__inner--d-row .pj-brd__cta { flex: 1 1 0; min-width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .pj-brd__cta,
  .pj-brd__cta-arrow,
  .pj-brd__dot,
  .pj-brd__nav-btn { transition: none; }
}
/* END_SECTION:pj_blueribbondeals */

/* START_SECTION:pj_buymoresavemorebanner (INDEX:3) */
.pj-bmsm {
  position: relative;
  width: 100%;
  min-height: var(--pj-bmsm-min-height-mobile, 720px);
  overflow: hidden;
  background: var(--pj-bmsm-fallback-bg, #5C4632);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  color: var(--pj-bmsm-urgency, #1F3D2D);
  box-sizing: border-box;
  display: block;
  isolation: isolate;
}

@media (min-width: 768px) {
  .pj-bmsm {
    min-height: var(--pj-bmsm-min-height-desktop, 720px);
  }
}

/* === Media === */
.pj-bmsm__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pj-bmsm__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pj-bmsm__image--placeholder {
  background: var(--pj-bmsm-fallback-bg, #5C4632);
}

.pj-bmsm__image--mobile { display: none; }

@media (max-width: 767px) {
  .pj-bmsm--has-mobile .pj-bmsm__image--desktop { display: none; }
  .pj-bmsm--has-mobile .pj-bmsm__image--mobile { display: block; }
}

.pj-bmsm__scrim {
  position: absolute;
  inset: 0;
  background: #10140E;
  opacity: var(--pj-bmsm-scrim-opacity, 0.25);
  pointer-events: none;
}

/* === Content + panel === */
.pj-bmsm__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 56px var(--pj-bmsm-pad-x-mobile, 24px);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-bmsm__content {
    padding: 72px var(--pj-bmsm-pad-x-desktop, 48px);
  }
}

.pj-bmsm__panel {
  position: relative;
  width: 100%;
  max-width: var(--pj-bmsm-panel-max-width, 540px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

/* === Tab (Card) - hidden by default; shown via [data-style="card"] selector below === */
.pj-bmsm__tab {
  display: none;
  width: 100%;
  padding: 14px 24px;
  background: var(--pj-bmsm-tab-bg, #C28533);
  color: var(--pj-bmsm-tab-fg, #FFFFFF);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-sizing: border-box;
}

/* === Badge circle (Overlay) - hidden by default; shown via [data-style="overlay"] selector below === */
.pj-bmsm__badge {
  display: none;
  position: absolute;
  bottom: 18%;
  left: 6%;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pj-bmsm-circle-bg, #1F3D2D);
  color: var(--pj-bmsm-circle-fg, #FFFFFF);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  transform: rotate(-8deg);
  padding: 8px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-bmsm__badge {
    width: 140px;
    height: 140px;
    font-size: 12px;
    bottom: 14%;
    left: 8%;
  }
}

/* === Typography (shared) === */
.pj-bmsm__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pj-bmsm-eyebrow, #1F3D2D);
  margin: 0;
}

.pj-bmsm__tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pj-bmsm__tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.pj-bmsm__tier-amount {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--pj-bmsm-tier-amount, #C28533);
}

.pj-bmsm__tier-threshold {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pj-bmsm-tier-threshold, #1F3D2D);
}

@media (min-width: 768px) {
  .pj-bmsm__tier-threshold { font-size: 16px; }
}

.pj-bmsm__divider {
  display: block;
  width: 72%;
  max-width: 360px;
  height: 1px;
  background: var(--pj-bmsm-divider, #1F3D2D);
  opacity: 0.25;
  margin: 0 auto;
}

.pj-bmsm__urgency {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pj-bmsm-urgency, #1F3D2D);
  margin: 0;
}

.pj-bmsm__code {
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pj-bmsm-code, #C28533);
}

.pj-bmsm__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--pj-bmsm-cta-bg, #1F3D2D);
  color: var(--pj-bmsm-cta-fg, #FFFFFF);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--pj-bmsm-cta-bg, #1F3D2D);
  cursor: pointer;
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}

@media (hover: hover) {
  .pj-bmsm__cta:hover {
    background: var(--pj-bmsm-cta-bg-hover, #0F2A1A);
    border-color: var(--pj-bmsm-cta-bg-hover, #0F2A1A);
    color: var(--pj-bmsm-cta-fg-hover, #FFFFFF);
  }
}

.pj-bmsm__cta:focus-visible {
  background: var(--pj-bmsm-cta-bg-hover, #0F2A1A);
  border-color: var(--pj-bmsm-cta-bg-hover, #0F2A1A);
  color: var(--pj-bmsm-cta-fg-hover, #FFFFFF);
  outline: 2px solid var(--pj-bmsm-cta-bg, #1F3D2D);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .pj-bmsm__cta {
    transition: none;
  }
}

/* === Card style === */
.pj-bmsm[data-style="card"] .pj-bmsm__panel {
  background: var(--pj-bmsm-panel-bg, #FAF7F0);
  padding-bottom: 36px;
  gap: 0;
  box-shadow: 0 12px 32px rgba(16, 20, 14, 0.14);
}

.pj-bmsm[data-style="card"] .pj-bmsm__tab { display: block; }

.pj-bmsm[data-style="card"] .pj-bmsm__eyebrow { margin-top: 36px; }

.pj-bmsm[data-style="card"] .pj-bmsm__tiers {
  margin-top: 18px;
  padding: 0 36px;
}

.pj-bmsm[data-style="card"] .pj-bmsm__urgency {
  margin-top: 22px;
  padding: 0 36px;
}

.pj-bmsm[data-style="card"] .pj-bmsm__cta { margin-top: 22px; }

.pj-bmsm[data-style="card"] .pj-bmsm__badge { display: none; }

/* === Overlay style === */
.pj-bmsm[data-style="overlay"] .pj-bmsm__panel {
  background: transparent;
  box-shadow: none;
  gap: 18px;
}

.pj-bmsm[data-style="overlay"] .pj-bmsm__tab { display: none; }

.pj-bmsm[data-style="overlay"] .pj-bmsm__badge { display: flex; }

.pj-bmsm[data-style="overlay"] .pj-bmsm__content {
  align-items: flex-start;
  padding-top: 64px;
}

@media (min-width: 768px) {
  .pj-bmsm[data-style="overlay"] .pj-bmsm__content {
    padding-top: 96px;
  }
}

/* === Compact density === */
.pj-bmsm[data-density="compact"] {
  min-height: 340px;
}

@media (min-width: 768px) {
  .pj-bmsm[data-density="compact"] {
    min-height: 280px;
  }
}

.pj-bmsm[data-density="compact"] .pj-bmsm__content {
  padding: 32px var(--pj-bmsm-pad-x-mobile, 24px);
}

@media (min-width: 768px) {
  .pj-bmsm[data-density="compact"] .pj-bmsm__content {
    padding: 40px var(--pj-bmsm-pad-x-desktop, 48px);
  }
}

.pj-bmsm[data-density="compact"] .pj-bmsm__panel {
  gap: 12px;
}

.pj-bmsm[data-style="card"][data-density="compact"] .pj-bmsm__panel {
  padding-bottom: 24px;
}

.pj-bmsm[data-style="card"][data-density="compact"] .pj-bmsm__eyebrow {
  margin-top: 24px;
}

.pj-bmsm[data-style="card"][data-density="compact"] .pj-bmsm__tiers {
  margin-top: 0;
  padding: 0 16px;
}

.pj-bmsm[data-style="card"][data-density="compact"] .pj-bmsm__urgency {
  margin-top: 0;
}

.pj-bmsm[data-style="card"][data-density="compact"] .pj-bmsm__cta {
  margin-top: 4px;
}

.pj-bmsm[data-density="compact"] .pj-bmsm__tiers {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

.pj-bmsm[data-density="compact"] .pj-bmsm__tier {
  flex: 0 1 auto;
  width: auto;
  padding: 0 12px;
}

.pj-bmsm[data-density="compact"] .pj-bmsm__tier-amount {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.pj-bmsm[data-density="compact"] .pj-bmsm__tier-threshold {
  font-size: 13px;
}

.pj-bmsm[data-density="compact"] .pj-bmsm__divider {
  width: 1px;
  height: auto;
  min-height: 56px;
  max-width: none;
  align-self: stretch;
  margin: 0;
}

.pj-bmsm[data-style="overlay"][data-density="compact"] .pj-bmsm__badge {
  display: none;
}

@media (max-width: 539px) {
  .pj-bmsm[data-density="compact"] .pj-bmsm__tiers {
    flex-direction: column;
    gap: 14px;
  }

  .pj-bmsm[data-density="compact"] .pj-bmsm__divider {
    width: 72%;
    max-width: 360px;
    height: 1px;
    min-height: 0;
    align-self: auto;
    margin: 0 auto;
  }

  .pj-bmsm[data-density="compact"] .pj-bmsm__tier-amount {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }
}

/* === Motion === */
.pj-bmsm__enter {
  opacity: 0;
  transform: translateY(8px);
  animation: pj-bmsm-enter 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--pj-bmsm-enter-delay, 0ms);
}

@keyframes pj-bmsm-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-bmsm__enter {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

section.shopify-section.shopify-section--pj-bmsm-banner {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_buymoresavemorebanner */

/* START_SECTION:pj_categorybanner (INDEX:4) */
.pj-cb {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: var(--pj-cb-min-height-mobile, 350px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--pj-cb-fallback-bg, #3C4B3C);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  color: var(--pj-cb-text, #FFFFFF);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-cb {
    min-height: var(--pj-cb-min-height-tablet, 400px);
  }
}

@media (min-width: 1024px) {
  .pj-cb {
    min-height: var(--pj-cb-min-height-desktop, 500px);
  }
}

/* === Media === */
.pj-cb__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pj-cb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pj-cb__img--placeholder {
  background: var(--pj-cb-fallback-bg, #3C4B3C);
}

/* === Overlays === */
.pj-cb__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pj-cb__overlay--vertical {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 40%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: var(--pj-cb-overlay-vertical-opacity, 0.8);
}

.pj-cb__overlay--horizontal {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    transparent 100%
  );
  opacity: var(--pj-cb-overlay-horizontal-opacity, 0.5);
}

/* === Content === */
.pj-cb__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--pj-cb-max-width, 1400px);
  margin: 0 auto;
  padding: var(--pj-cb-pad-y, 32px) var(--pj-cb-pad-x-mobile, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-cb__content {
    padding-inline: var(--pj-cb-pad-x-tablet, 48px);
  }
}

@media (min-width: 1024px) {
  .pj-cb__content {
    padding-inline: var(--pj-cb-pad-x-desktop, 64px);
  }
}

/* === Header bar === */
.pj-cb__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--pj-cb-text, #FFFFFF);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.pj-cb__label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pj-cb__label-line {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.pj-cb__established {
  color: var(--pj-cb-text, #FFFFFF);
}

/* === Bottom content === */
.pj-cb__bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  margin-top: auto;
  padding-top: 4rem;
  color: var(--pj-cb-text, #FFFFFF);
}

@media (min-width: 1024px) {
  .pj-cb__bottom {
    flex-direction: row;
    align-items: flex-end;
    gap: 4rem;
  }
}

.pj-cb__title-col {
  flex: 1;
  min-width: 0;
}

.pj-cb__title {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--pj-cb-text, #FFFFFF);
  margin: 0;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .pj-cb__title {
    font-size: 72px;
  }
}

@media (min-width: 1024px) {
  .pj-cb__title {
    font-size: 96px;
  }
}

.pj-cb__info-col {
  flex: 1;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .pj-cb__info-col {
    padding-bottom: 0.5rem;
  }
}

.pj-cb__quote {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--pj-cb-text, #FFFFFF);
  margin: 0;
}

@media (min-width: 768px) {
  .pj-cb__quote {
    font-size: 24px;
  }
}

.pj-cb__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.25rem;
}

.pj-cb__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pj-cb-cta-bg, #C1694F);
  color: var(--pj-cb-cta-fg, #FFFFFF);
  padding: 1rem 2rem;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--pj-cb-cta-bg, #C1694F);
  cursor: pointer;
  transition: background-color 300ms ease, border-color 300ms ease;
}

@media (hover: hover) {
  .pj-cb__cta:hover {
    background-color: var(--pj-cb-cta-bg-hover, #A95A43);
    border-color: var(--pj-cb-cta-bg-hover, #A95A43);
  }
}

.pj-cb__cta:focus-visible {
  outline: 2px solid var(--pj-cb-cta-bg, #C1694F);
  outline-offset: 3px;
}

/* === Motion === */
.pj-cb__enter {
  opacity: 0;
  animation-duration: 800ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

.pj-cb__enter--header {
  transform: translateY(-20px);
  animation-name: pj-cb-enter-header;
  animation-delay: 0ms;
}

.pj-cb__enter--from-left {
  transform: translateX(-30px);
  animation-name: pj-cb-enter-from-left;
  animation-delay: 200ms;
}

.pj-cb__enter--from-right {
  transform: translateX(30px);
  animation-name: pj-cb-enter-from-right;
  animation-delay: 400ms;
}

@keyframes pj-cb-enter-header {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pj-cb-enter-from-left {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pj-cb-enter-from-right {
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pj-cb__enter,
  .pj-cb__enter--header,
  .pj-cb__enter--from-left,
  .pj-cb__enter--from-right {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pj-cb__cta {
    transition: none;
  }
}

section.shopify-section.shopify-section--pj-category-banner {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_categorybanner */

/* START_SECTION:pj_categorycardsgrid (INDEX:5) */
.pj-ccg {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--pj-ccg-section-bg, #FAF8F5);
  padding: var(--pj-ccg-pad-y-mobile, 56px) var(--pj-ccg-pad-x-mobile, 20px);
  display: flex;
  justify-content: center;
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  color: var(--pj-ccg-title, #2C2C2C);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-ccg {
    padding: var(--pj-ccg-pad-y-desktop, 96px) var(--pj-ccg-pad-x-desktop, 48px);
  }
}

.pj-ccg__inner {
  width: 100%;
  max-width: var(--pj-ccg-max-width, 1320px);
}

/* === Header === */
.pj-ccg__header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.pj-ccg__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 11px;
  letter-spacing: 0.227em;
  text-transform: uppercase;
  color: var(--pj-ccg-eyebrow, #C1694F);
  font-weight: 500;
  margin: 0 0 1rem;
}

.pj-ccg__eyebrow-line {
  display: block;
  width: 1.25rem;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

.pj-ccg__title {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: var(--pj-ccg-title, #2C2C2C);
  margin: 0;
}

@media (min-width: 768px) {
  .pj-ccg__title {
    font-size: 44px;
  }
}

.pj-ccg__header-rule {
  display: block;
  margin: 1.25rem auto 0;
  width: 2.5rem;
  height: 1px;
  background-color: var(--pj-ccg-rule, #1A1A1A);
  opacity: 0.1;
}

/* === Cards grid === */
.pj-ccg__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pj-ccg-card-gap, 20px);
}

@media (min-width: 768px) {
  .pj-ccg__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile horizontal-scroll mode — opt-in via setting */
@media (max-width: 767px) {
  .pj-ccg__cards--scroll-mobile {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--pj-ccg-card-gap, 20px);
    margin-inline: calc(-1 * var(--pj-ccg-pad-x-mobile, 20px));
    padding-inline: var(--pj-ccg-pad-x-mobile, 20px);
    scroll-padding-inline-start: var(--pj-ccg-pad-x-mobile, 20px);
    scrollbar-width: none;
  }

  .pj-ccg__cards--scroll-mobile::-webkit-scrollbar {
    display: none;
  }

  .pj-ccg__cards--scroll-mobile > .pj-ccg__card {
    flex: 0 0 var(--pj-ccg-mobile-card-w, 78%);
    scroll-snap-align: start;
  }
}

/* === Card === */
.pj-ccg__card {
  position: relative;
  /* overflow:hidden removed — it clips the hover box-shadow; img-wrap contains the image zoom */
  transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}

@media (hover: hover) {
  .pj-ccg__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.18);
  }
}

/* Image wrap — aspect ratio editable per breakpoint */
.pj-ccg__card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: var(--pj-ccg-img-aspect-mobile, 3 / 4);
}

.pj-ccg__card-img-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.pj-ccg__card-img-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

@media (min-width: 768px) {
  .pj-ccg__card-img-wrap {
    aspect-ratio: var(--pj-ccg-img-aspect-desktop, 3 / 4);
  }
}

.pj-ccg__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease-out;
}

.pj-ccg__card-img--placeholder {
  background: linear-gradient(135deg, #E8E2D8 0%, #D8CFC1 100%);
}

@media (hover: hover) {
  .pj-ccg__card:hover .pj-ccg__card-img {
    transform: scale(1.04);
  }
}

/* Colored text panel */
.pj-ccg__card-panel {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background-color: var(--pj-ccg-panel-bg, #3C4B3C);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.pj-ccg__card-title {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--pj-ccg-card-title, #FFFFFF);
  margin: 0;
}

.pj-ccg__card-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.625rem;
}

.pj-ccg__card-link {
  font-size: var(--pj-ccg-cta-size-mobile, 10px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: color-mix(in srgb, var(--pj-ccg-cta-text, #FFFFFF) 65%, transparent);
  text-decoration: none;
  padding: var(--pj-ccg-cta-pad-y-mobile, 5px) var(--pj-ccg-cta-pad-x-mobile, 10px);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--pj-ccg-cta-border, #FFFFFF) 25%, transparent);
  transition: color 300ms ease, border-color 300ms ease, background-color 300ms ease;
}

@media (min-width: 768px) {
  .pj-ccg__card-link {
    font-size: var(--pj-ccg-cta-size-desktop, 10px);
    padding: var(--pj-ccg-cta-pad-y-desktop, 5px) var(--pj-ccg-cta-pad-x-desktop, 10px);
  }
}

@media (hover: hover) {
  .pj-ccg__card-link:hover {
    color: var(--pj-ccg-cta-text, #FFFFFF);
    border-color: color-mix(in srgb, var(--pj-ccg-cta-border, #FFFFFF) 70%, transparent);
    background-color: color-mix(in srgb, var(--pj-ccg-cta-text, #FFFFFF) 10%, transparent);
  }
}

.pj-ccg__card-link:focus-visible {
  color: var(--pj-ccg-cta-text, #FFFFFF);
  border-color: color-mix(in srgb, var(--pj-ccg-cta-border, #FFFFFF) 70%, transparent);
  background-color: color-mix(in srgb, var(--pj-ccg-cta-text, #FFFFFF) 10%, transparent);
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* === Motion === */
.pj-ccg__enter {
  opacity: 0;
  transform: translateY(24px);
  animation: pj-ccg-enter 550ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--pj-ccg-enter-delay, 0ms);
}

@keyframes pj-ccg-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-ccg__enter {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pj-ccg__card,
  .pj-ccg__card-img,
  .pj-ccg__card-link {
    transition: none;
  }

  @media (hover: hover) {
    .pj-ccg__card:hover {
      transform: none;
      box-shadow: none;
    }

    .pj-ccg__card:hover .pj-ccg__card-img {
      transform: none;
    }
  }
}

section.shopify-section.shopify-section--pj-category-cards-grid {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_categorycardsgrid */

/* START_SECTION:pj_categoryfilterbar (INDEX:6) */
.pj-cfb {
  width: 100%;
  background: var(--pj-cfb-bg, #faf8f5);
  border-bottom: 1px solid var(--pj-cfb-border, #d6dad0);
  font-family: 'Rubik', system-ui, sans-serif;
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  /* When a filter link with #pj-category-filters is clicked, the browser scrolls
     the page so this nav sits at the configured sticky offset (i.e., directly
     below the site header) instead of jumping to the very top of the page. */
  scroll-margin-top: var(--pj-cfb-sticky-offset, 65px);
}

.pj-cfb--sticky {
  position: sticky;
  top: var(--pj-cfb-sticky-offset, 65px);
  z-index: var(--pj-cfb-z, 5);
}

.pj-cfb__inner {
  margin-inline: auto;
  max-width: var(--pj-cfb-max-width, 1480px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-inline: clamp(16px, 4vw, 56px);
  padding-block: var(--pj-cfb-padding-y, 20px);
}

.pj-cfb__prefix {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pj-cfb-prefix, #2d4a3e);
  margin-right: 8px;
}

.pj-cfb__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--pj-cfb-btn-radius, 8px);
  border: 1px solid var(--pj-cfb-btn-idle-border, #c7d1c5);
  background: var(--pj-cfb-btn-idle-bg, #ffffff);
  color: var(--pj-cfb-btn-idle-text, #2d4a3e);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.pj-cfb__btn-label {
  font-weight: 500;
}

.pj-cfb__btn-count {
  font-size: 11px;
  font-weight: 400;
  color: var(--pj-cfb-btn-idle-count, #717182);
}

@media (hover: hover) {
  .pj-cfb__btn:not(.is-active):hover {
    background: var(--pj-cfb-btn-idle-hover-bg, #f0ede5);
  }
}

.pj-cfb__btn:focus-visible {
  outline: 2px solid var(--pj-cfb-btn-active-bg, #2d4a3e);
  outline-offset: 2px;
}

.pj-cfb__btn.is-active {
  background: var(--pj-cfb-btn-active-bg, #2d4a3e);
  color: var(--pj-cfb-btn-active-text, #ffffff);
  border-color: var(--pj-cfb-btn-active-bg, #2d4a3e);
}

.pj-cfb__btn.is-active .pj-cfb__btn-count {
  color: var(--pj-cfb-btn-active-count, #c7d1c5);
}

@media (max-width: 639px) {
  .pj-cfb__inner {
    gap: 8px;
    padding-block: 14px;
  }

  .pj-cfb__btn {
    padding: 7px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-cfb__btn { transition: none; }
}

section.shopify-section.shopify-section--pj-category-filters {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_categoryfilterbar */

/* START_SECTION:pj_categoryheader (INDEX:7) */
.pj-ch {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--pj-ch-bg, #faf8f5);
  color: var(--pj-ch-title, #2c2c2c);
  padding: var(--pj-ch-pad-y-mobile, 56px) var(--pj-ch-pad-x-mobile, 20px);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}

@media (min-width: 768px) {
  .pj-ch {
    padding: var(--pj-ch-pad-y-desktop, 96px) var(--pj-ch-pad-x-desktop, 48px);
  }
}

.pj-ch--has-image {
  min-height: var(--pj-ch-minh-mobile, 260px);
}

@media (min-width: 768px) {
  .pj-ch--has-image {
    min-height: var(--pj-ch-minh-desktop, 360px);
  }
}

/* ===== Background image + overlay ===== */
.pj-ch__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pj-ch__bg-img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.pj-ch__overlay {
  position: absolute;
  inset: 0;
  background: var(--pj-ch-overlay-color, #1a1a1a);
  opacity: var(--pj-ch-overlay-opacity, 0.3);
}

/* ===== Inner ===== */
.pj-ch__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--pj-ch-max-width, 1320px);
}

/* ===== Header / alignment ===== */
.pj-ch__header {
  text-align: center;
}

.pj-ch--align-left .pj-ch__header {
  text-align: left;
}

.pj-ch--align-right .pj-ch__header {
  text-align: right;
}

/* ===== Eyebrow ===== */
.pj-ch__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1rem;
  font-size: var(--pj-ch-eyebrow-size, 11px);
  letter-spacing: 0.227em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pj-ch-eyebrow, #c1694f);
}

.pj-ch__eyebrow-line {
  display: block;
  width: 1.25rem;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

/* ===== Title ===== */
.pj-ch__title {
  margin: 0;
  font-weight: 400;
  line-height: 1.15;
  color: var(--pj-ch-title, #2c2c2c);
  font-size: var(--pj-ch-title-size-mobile, 36px);
}

@media (min-width: 768px) {
  .pj-ch__title {
    font-size: var(--pj-ch-title-size-desktop, 44px);
  }
}

.pj-ch--font-serif .pj-ch__title {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
}

.pj-ch--font-sans .pj-ch__title {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}

.pj-ch--title-italic .pj-ch__title {
  font-style: italic;
}

/* ===== Hairline rule ===== */
.pj-ch__rule {
  display: block;
  margin: 1.25rem auto 0;
  width: 2.5rem;
  height: 1px;
  background-color: var(--pj-ch-rule, #1a1a1a);
  opacity: 0.1;
}

.pj-ch--align-left .pj-ch__rule {
  margin-left: 0;
  margin-right: auto;
}

.pj-ch--align-right .pj-ch__rule {
  margin-left: auto;
  margin-right: 0;
}

/* ===== Subhead ===== */
.pj-ch__subhead {
  margin: 1rem auto 0;
  max-width: 60ch;
  color: var(--pj-ch-subhead, #5a5a5a);
  font-size: var(--pj-ch-subhead-size-mobile, 16px);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .pj-ch__subhead {
    font-size: var(--pj-ch-subhead-size-desktop, 18px);
  }
}

.pj-ch--align-left .pj-ch__subhead {
  margin-inline: 0;
}

.pj-ch--align-right .pj-ch__subhead {
  margin-left: auto;
  margin-right: 0;
}

.pj-ch__subhead :first-child { margin-top: 0; }
.pj-ch__subhead :last-child { margin-bottom: 0; }

/* ===== Light text mode (for use over a background image) ===== */
.pj-ch--light .pj-ch__title { color: #ffffff; }
.pj-ch--light .pj-ch__eyebrow { color: #ffffff; }
.pj-ch--light .pj-ch__subhead { color: rgba(255, 255, 255, 0.88); }
.pj-ch--light .pj-ch__rule { background-color: #ffffff; opacity: 0.4; }

/* ===== Entrance motion ===== */
.pj-ch__enter {
  opacity: 0;
  transform: translateY(24px);
  animation: pj-ch-enter 550ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--pj-ch-enter-delay, 0ms);
}

@keyframes pj-ch-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-ch__enter {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
/* END_SECTION:pj_categoryheader */

/* START_SECTION:pj_categoryheadergrid (INDEX:8) */
.pj-chg {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: var(--pj-chg-out-y-m, 16px) var(--pj-chg-out-x-m, 16px);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}

.pj-chg.pj-chg--full {
  padding-left: 0;
  padding-right: 0;
}

.pj-chg__banner {
  position: relative;
  width: 100%;
  max-width: var(--pj-chg-max-width, 1400px);
  box-sizing: border-box;
  border-radius: var(--pj-chg-radius, 12px);
  overflow: hidden;
  isolation: isolate;
  background: var(--pj-chg-line-color, #ffffff);
  display: flex;
  flex-direction: column;
  gap: var(--pj-chg-line-width, 4px);
}

.pj-chg--full .pj-chg__banner {
  max-width: none;
  border-radius: 0;
}

.pj-chg__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  box-sizing: border-box;
  padding: var(--pj-chg-panel-py-m, 28px) var(--pj-chg-panel-px-m, 20px);
  color: var(--pj-chg-text, #ffffff);
  background-color: var(--pj-chg-bg-1, #0a1a4f);
  background-image:
    radial-gradient(120% 130% at 28% 8%, color-mix(in srgb, var(--pj-chg-bg-2, #123a9e) 72%, transparent), transparent 60%),
    linear-gradient(165deg, var(--pj-chg-bg-1, #0a1a4f), color-mix(in srgb, var(--pj-chg-bg-1, #0a1a4f) 78%, black 22%));
}

.pj-chg__ribbon {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 7px 26px;
  background: var(--pj-chg-ribbon-bg, #2f6bf3);
  color: var(--pj-chg-ribbon-fg, #ffffff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 50%, 100% 100%, 0 100%, 11px 50%);
}

.pj-chg__headline-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pj-chg__lead {
  margin: 0;
  font-size: clamp(1rem, 3.4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.pj-chg__headline {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: var(--pj-chg-h-size-m, 40px);
}

.pj-chg__subhead {
  margin: 2px 0 0;
  font-size: clamp(0.8rem, 3vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  text-wrap: balance;
}

.pj-chg__end {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2px 0 0;
  color: var(--pj-chg-accent, #5c8df0);
}

.pj-chg__end-text {
  font-size: clamp(0.75rem, 2.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pj-chg__end-line {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: currentColor;
  opacity: 0.85;
  flex-shrink: 0;
}

.pj-chg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pj-chg-line-width, 4px);
  background: var(--pj-chg-line-color, #ffffff);
}

.pj-chg__tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: var(--pj-chg-bg-1, #0a1a4f);
}

.pj-chg__tile-link {
  position: absolute;
  inset: 0;
  display: block;
}

.pj-chg .pj-chg__tile-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

@media (hover: hover) {
  .pj-chg__tile-link[href]:hover .pj-chg__tile-image {
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-chg .pj-chg__tile-image { transition: none; }
  .pj-chg__tile-link[href]:hover .pj-chg__tile-image { transform: none; }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .pj-chg__banner--m-grid .pj-chg__tile { aspect-ratio: 1 / 1; }
  .pj-chg__banner--m-grid .pj-chg__grid--n1 { grid-template-columns: 1fr; }

  .pj-chg__banner--m-row .pj-chg__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .pj-chg__banner--m-row .pj-chg__tile {
    flex: 0 0 62%;
    aspect-ratio: 1 / 1;
    scroll-snap-align: start;
  }

  .pj-chg__banner--m-hide .pj-chg__grid { display: none; }
}

/* ---- Desktop ---- */
@media (min-width: 768px) {
  .pj-chg {
    padding: var(--pj-chg-out-y-d, 28px) var(--pj-chg-out-x-d, 32px);
  }
  .pj-chg__banner {
    flex-direction: row;
    align-items: stretch;
    min-height: var(--pj-chg-height-d, 360px);
  }
  .pj-chg__panel {
    flex: 0 0 var(--pj-chg-panel-width, 58%);
    padding: var(--pj-chg-panel-py-d, 32px) var(--pj-chg-panel-px-d, 48px);
  }
  .pj-chg__headline { font-size: var(--pj-chg-h-size-d, 64px); }

  .pj-chg__grid {
    flex: 1 1 0;
    min-width: 0;
  }
  .pj-chg__grid--n1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .pj-chg__grid--n2 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .pj-chg__grid--n3 { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr; }
  .pj-chg__grid--n4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
}
/* END_SECTION:pj_categoryheadergrid */

/* START_SECTION:pj_categoryslider (INDEX:9) */
.pj-cs {
  background: var(--pj-cs-bg, #ffffff);
  padding-top: var(--pj-cs-pad-top, 80px);
  padding-bottom: var(--pj-cs-pad-bottom, 80px);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  overflow: hidden;
}

/* Tighten the vertical rhythm on small screens (≈80→64 at default settings). */
@media (max-width: 749px) {
  .pj-cs {
    padding-top: calc(var(--pj-cs-pad-top, 80px) * 0.8);
    padding-bottom: calc(var(--pj-cs-pad-bottom, 80px) * 0.8);
  }
}

.pj-cs__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 56px);
}

.pj-cs__editor-hint {
  margin: 0;
  padding: 24px;
  border: 1px dashed var(--pj-cs-border, #eae4d9);
  color: var(--pj-cs-eyebrow, #737373);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

/* ===== Optional divider line above the slider ===== */
.pj-cs--border .pj-cs__viewport {
  border-top: 1px solid var(--pj-cs-border, #eae4d9);
  padding-top: 24px;
}

@media (min-width: 750px) {
  .pj-cs--border .pj-cs__viewport {
    padding-top: 40px;
  }
}

/* ===== Inline nav row (Variant A) ===== */
.pj-cs__inline-nav-row {
  display: none;
  justify-content: flex-end;
  margin-bottom: 24px;
}

@media (min-width: 750px) {
  .pj-cs--nav-inline .pj-cs__inline-nav-row {
    display: flex !important;
    margin-bottom: 32px;
  }
}

.pj-cs__inline-nav {
  display: none;
  flex-shrink: 0;
  gap: 8px;
}

@media (min-width: 750px) {
  .pj-cs--nav-inline .pj-cs__inline-nav {
    display: flex !important;
  }
}

.pj-cs__inline-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  background: #ebe5d4;
  color: var(--pj-cs-heading, #2a332a);
  transition: background-color 200ms ease, color 200ms ease, opacity 200ms ease;
}

.pj-cs__inline-btn svg {
  width: 20px !important;
  height: 20px !important;
  display: block;
}

@media (hover: hover) {
  .pj-cs__inline-btn:hover:not(:disabled) {
    background: var(--pj-cs-arrow-hover-bg, #3c4b3c);
    color: #ffffff;
  }
}

.pj-cs__inline-btn:focus-visible {
  outline: 2px solid var(--pj-cs-heading, #2a332a);
  outline-offset: 2px;
}

.pj-cs__inline-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* ===== Viewport + track ===== */
.pj-cs__viewport {
  display: block;
  position: relative;
}

.pj-cs__track {
  list-style: none;
  margin: 0;
  padding: 0 0 4px;
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline-start: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pj-cs__track::-webkit-scrollbar {
  display: none;
}

.pj-cs--grabbing .pj-cs__track {
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.pj-cs__item {
  /* Mobile: merchant-set number of cards across the screen.
     A half value (e.g. 1.5) leaves the next card peeking. */
  flex: 0 0 calc(100% / var(--pj-cs-cols-m, 1.5) - 24px);
  scroll-snap-align: start;
  animation: pj-cs-fade-in 600ms ease-out var(--pj-cs-delay, 0ms) both;
}

/* Tablet: 3 cards across, with a peek of the next. */
@media (min-width: 750px) {
  .pj-cs__item {
    flex-basis: calc((100% - 3 * 24px - var(--pj-cs-peek, 32px)) / 3);
  }
}

/* Desktop: merchant-set column count (default 4), with a clean peek sliver. */
@media (min-width: 1000px) {
  .pj-cs__item {
    flex-basis: calc(
      (100% - var(--pj-cs-cols, 4) * 24px - var(--pj-cs-peek, 32px)) / var(--pj-cs-cols, 4)
    );
  }
}

@keyframes pj-cs-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Card ===== */
.pj-cs__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pj-cs__media {
  position: relative;
  display: block;
  aspect-ratio: var(--pj-cs-aspect, 3 / 4);
  overflow: hidden;
  background: var(--pj-cs-img-bg, #fcfaf6);
}

.pj-cs__image,
.pj-cs__placeholder-svg {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: var(--pj-cs-focal, center);
  transition: transform 700ms ease-out;
}

@media (hover: hover) {
  .pj-cs__card:hover .pj-cs__image {
    transform: scale(1.05);
  }
}

.pj-cs__overlay {
  position: absolute;
  inset: 0;
  background: var(--pj-cs-overlay, #3c4b3c);
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}

@media (hover: hover) {
  .pj-cs__card:hover .pj-cs__overlay {
    opacity: 0.1;
  }
}

.pj-cs__cta-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
  pointer-events: none;
}

@media (hover: hover) {
  .pj-cs__card:hover .pj-cs__cta-wrap,
  .pj-cs__card:focus-visible .pj-cs__cta-wrap {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Touch / no-hover devices: always show the CTA so it's discoverable. */
@media (hover: none) {
  .pj-cs__cta-wrap {
    opacity: 1;
    transform: none;
  }
}

.pj-cs__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--pj-cs-cta-bg, #ffffff);
  color: var(--pj-cs-cta-text, #2a332a);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: background-color 300ms ease, color 300ms ease;
}

@media (min-width: 750px) {
  .pj-cs__cta { font-size: 11px; }
}

@media (hover: hover) {
  .pj-cs__card:hover .pj-cs__cta {
    background: var(--pj-cs-cta-hover-bg, #3c4b3c);
    color: var(--pj-cs-cta-hover-text, #fcfbf7);
  }
}

.pj-cs__card:focus-visible .pj-cs__media {
  outline: 2px solid var(--pj-cs-heading, #2a332a);
  outline-offset: 2px;
}

.pj-cs__card-title {
  display: block;
  margin-top: 20px;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: var(--pj-cs-card-title-size-m, 24px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--pj-cs-card-title, #2a332a);
}

@media (min-width: 750px) {
  .pj-cs__card-title {
    margin-top: 24px;
    font-size: var(--pj-cs-card-title-size-d, 28px);
  }
}

.pj-cs--align-center .pj-cs__card-title {
  text-align: center;
}

@media (hover: hover) {
  .pj-cs__card:hover .pj-cs__card-title {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

/* ===== Floating nav (Variant B/C) ===== */
.pj-cs__float-btn {
  display: none;
}

@media (min-width: 750px) {
  .pj-cs--nav-floating .pj-cs__float-btn {
    position: absolute;
    /* Vertically centered on the image track. Starts at 50% of the viewport and
       is refined to the exact media-box center in JS (positionFloatingArrows). */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    background: var(--pj-cs-arrow-bg, #2a332a);
    color: var(--pj-cs-arrow-icon, #ffffff);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 0s 220ms;
  }

  .pj-cs--nav-floating .pj-cs__float-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 220ms ease, visibility 0s;
  }

  .pj-cs__float-btn svg {
    width: 24px !important;
    height: 24px !important;
    display: block;
  }

  /* Sit just inside the content edges, overlapping the cards (not hanging off). */
  .pj-cs__float-btn--prev { left: 0; }
  .pj-cs__float-btn--next { right: 0; }

  .pj-cs__float-btn:focus-visible {
    outline: 2px solid var(--pj-cs-arrow-bg, #2a332a);
    outline-offset: 3px;
  }
}

@media (min-width: 750px) and (hover: hover) {
  .pj-cs--nav-floating .pj-cs__float-btn:hover {
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-cs__item { animation: none; }
  .pj-cs__image,
  .pj-cs__overlay,
  .pj-cs__cta-wrap,
  .pj-cs__cta { transition: none; }
  .pj-cs__float-btn { transition: opacity 0s, visibility 0s; }
}
/* END_SECTION:pj_categoryslider */

/* START_SECTION:pj_collectiongrid (INDEX:10) */
.pj-cg {
  background-color: var(--pj-cg-bg, #FAF8F5);
  color: var(--pj-cg-text, #2C2C2C);
  padding-block: var(--pj-cg-pad-y-mobile, 56px);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}
@media (min-width: 768px) {
  .pj-cg { padding-block: var(--pj-cg-pad-y-desktop, 96px); }
}

.pj-cg__inner {
  max-width: var(--pj-cg-max-w, 1320px);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.pj-cg__header {
  margin: 0 0 2rem;
  text-align: center;
}
.pj-cg__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pj-cg-accent, #C1694F);
}
.pj-cg__heading {
  margin: 0;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.15;
}
.pj-cg__count {
  margin: 0.5rem 0 0;
  font-size: 12px;
  color: var(--pj-cg-muted, #717182);
}

.pj-cg__empty {
  margin: 2rem auto;
  text-align: center;
  color: var(--pj-cg-muted, #717182);
  font-size: 14px;
}

.pj-cg__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pj-cg-card-gap, 24px);
}
@media (min-width: 640px) {
  .pj-cg__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .pj-cg--cols-3 .pj-cg__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pj-cg--cols-4 .pj-cg__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.pj-cg__item {
  display: flex;
}

.pj-cg__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: inherit;
  background-color: var(--pj-cg-card-bg, #FFFFFF);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 220ms ease;
}
@media (hover: hover) {
  .pj-cg__card:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); }
  .pj-cg__card:hover .pj-cg__image { transform: scale(1.03); }
  .pj-cg__card:hover .pj-cg__title { color: var(--pj-cg-accent, #C1694F); }
}
.pj-cg__card:focus-visible {
  outline: 2px solid var(--pj-cg-accent, #C1694F);
  outline-offset: 3px;
}

.pj-cg__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--pj-cg-muted, #717182) 12%, var(--pj-cg-card-bg, #FFFFFF));
}
.pj-cg__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.pj-cg__image--placeholder { width: 100%; height: 100%; }

.pj-cg__sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pj-cg-cta-fg, #FAF8F5);
  background-color: var(--pj-cg-accent, #C1694F);
  border-radius: 2px;
}

.pj-cg__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px 18px;
  color: inherit;
  text-align: left;
}
.pj-cg__vendor {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pj-cg-muted, #717182);
}
.pj-cg__title {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 16px;
  line-height: 1.25;
  transition: color 220ms ease;
}
.pj-cg__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
}
.pj-cg__price {
  font-weight: 500;
  color: var(--pj-cg-text, #2C2C2C);
}
.pj-cg__price--sale {
  color: var(--pj-cg-accent, #C1694F);
}
.pj-cg__compare {
  color: var(--pj-cg-muted, #717182);
  font-size: 13px;
  text-decoration-thickness: 1.5px;
}

.pj-cg__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
  font-size: 13px;
}
.pj-cg__page-list {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.pj-cg__page,
.pj-cg__page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 3px;
  color: var(--pj-cg-text, #2C2C2C);
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease;
}
.pj-cg__page { gap: 6px; }
.pj-cg__page-num.is-current {
  background-color: var(--pj-cg-cta-bg, #2D4A3E);
  color: var(--pj-cg-cta-fg, #FAF8F5);
  font-weight: 600;
}
@media (hover: hover) {
  .pj-cg__page:hover,
  a.pj-cg__page-num:hover {
    background-color: color-mix(in srgb, var(--pj-cg-cta-bg, #2D4A3E) 10%, transparent);
  }
}
.pj-cg__page:focus-visible,
.pj-cg__page-num:focus-visible {
  outline: 2px solid var(--pj-cg-cta-bg, #2D4A3E);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .pj-cg__card,
  .pj-cg__image,
  .pj-cg__title,
  .pj-cg__page,
  .pj-cg__page-num { transition: none; }
}

section.shopify-section.shopify-section--pj-collection-grid {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_collectiongrid */

/* START_SECTION:pj_condensedpromobanner (INDEX:11) */
.gw-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--gw-promo-outer-py-mobile, 16px) var(--gw-promo-outer-px-mobile, 16px);
  background: var(--gw-promo-outer-bg, #f0f0ec);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  box-sizing: border-box;
  transition: background-color 900ms cubic-bezier(0.45, 0, 0.55, 1);
}

@media (min-width: 768px) {
  .gw-promo {
    padding: var(--gw-promo-outer-py-desktop, 32px) var(--gw-promo-outer-px-desktop, 32px);
  }
}

.gw-promo__empty {
  width: 100%;
  max-width: var(--gw-promo-max-width, 1400px);
  padding: 32px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--gw-promo-outer-bg, #f0f0ec), black 60%);
  border: 1px dashed currentColor;
  border-radius: var(--gw-promo-radius, 12px);
  margin: 0;
}

.gw-promo__rotator {
  position: relative;
  display: block;
  width: 100%;
  max-width: var(--gw-promo-max-width, 1400px);
}

.gw-promo__slides {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
}

.gw-promo__slide {
  grid-area: stack;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background: var(--gw-promo-banner-bg, #a3b278);
  color: var(--gw-promo-text, #fcfbf7);
  border-radius: var(--gw-promo-radius, 12px);
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  opacity: 1;
  transition: opacity 900ms cubic-bezier(0.45, 0, 0.55, 1);
}

.gw-promo__rotator--multi .gw-promo__slide {
  opacity: 0;
  pointer-events: none;
}

.gw-promo__rotator--multi .gw-promo__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .gw-promo,
  .gw-promo__slide,
  .gw-promo__cta,
  .gw-promo__cta-arrow,
  .gw-promo__urgency {
    animation: none;
    transition: none;
  }
}

.gw-promo__slide[href]:focus-visible {
  outline: 2px solid var(--gw-promo-text, #fcfbf7);
  outline-offset: 4px;
}

.gw-promo__slide[href] { cursor: pointer; }
.gw-promo__slide:not([href]) { cursor: default; }

.gw-promo__slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  text-decoration: none;
  color: transparent;
  cursor: pointer;
}

.gw-promo__slide-overlay:focus-visible {
  outline: 2px solid var(--gw-promo-text, #fcfbf7);
  outline-offset: -4px;
  border-radius: inherit;
}

.gw-promo__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gw-promo__hairline {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  pointer-events: none;
}

.gw-promo__hairline--top { top: 8px; }
.gw-promo__hairline--bottom { bottom: 8px; }

.gw-promo__leaf {
  position: absolute;
  top: 50%;
  width: 28px !important;
  height: 28px !important;
  transform: translateY(-50%);
  opacity: 0.3;
  pointer-events: none;
  display: none;
}

.gw-promo__leaf--left { left: 24px; }
.gw-promo__leaf--right { right: 24px; transform: translateY(-50%) scaleX(-1); }

@media (min-width: 768px) {
  .gw-promo__leaf { display: block; }
}

.gw-promo__layout--mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: var(--gw-promo-inner-py-mobile, 40px) var(--gw-promo-inner-px-mobile, 24px);
  min-height: var(--gw-promo-min-height-mobile, 0px);
  box-sizing: border-box;
}

.gw-promo__layout--desktop {
  display: none;
}

@media (min-width: 768px) {
  .gw-promo__layout--mobile { display: none; }
  .gw-promo .gw-promo__layout--desktop {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: var(--gw-promo-inner-py-desktop, 32px) var(--gw-promo-inner-px-desktop, 48px);
    min-height: var(--gw-promo-min-height-desktop, 0px);
    box-sizing: border-box;
  }
  .gw-promo .gw-promo__layout--desktop > .gw-promo__col {
    flex: 1 1 0;
    min-width: 0;
  }
  .gw-promo .gw-promo__layout--desktop > .gw-promo__col--with-divider {
    position: relative;
    padding-left: 28px;
  }
  .gw-promo .gw-promo__layout--desktop > .gw-promo__col--with-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 64px;
    background: currentColor;
    opacity: 0.4;
    pointer-events: none;
  }
  .gw-promo .gw-promo__layout--simple-desktop > .gw-promo__col--start {
    flex: 1.3 1 0;
  }
  .gw-promo .gw-promo__layout--tiered-desktop > .gw-promo__col--start {
    flex: 1.4 1 0;
  }
  .gw-promo .gw-promo__layout--tiered-desktop > .gw-promo__col--center {
    flex: 1.1 1 0;
  }
  .gw-promo .gw-promo__layout--clearance-desktop > .gw-promo__col--start {
    flex: 1.3 1 0;
  }
  .gw-promo .gw-promo__layout--clearance-desktop > .gw-promo__col--center {
    flex: 1.2 1 0;
  }
}

@media (min-width: 1024px) {
  .gw-promo .gw-promo__layout--desktop { gap: 36px; }
  .gw-promo .gw-promo__layout--desktop > .gw-promo__col--with-divider { padding-left: 36px; }
  .gw-promo .gw-promo__layout--desktop > .gw-promo__col--with-divider::before { height: 80px; }
}

@media (min-width: 1280px) {
  .gw-promo .gw-promo__layout--desktop { gap: 48px; }
  .gw-promo .gw-promo__layout--desktop > .gw-promo__col--with-divider { padding-left: 48px; }
}

.gw-promo__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.gw-promo__col--start { align-items: flex-start; }
.gw-promo__col--center { align-items: flex-start; }
.gw-promo__col--end { align-items: flex-end; gap: 12px; }

.gw-promo__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 8px;
}

@media (min-width: 1024px) {
  .gw-promo__eyebrow { font-size: 11px; }
}

.gw-promo__eyebrow--wide {
  letter-spacing: 0.32em;
  margin-bottom: 0;
}

.gw-promo__headline {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: var(--gw-promo-headline-transform, uppercase);
}

.gw-promo__headline--stacked {
  font-size: clamp(2.5rem, 11vw, 4rem);
  line-height: 0.95;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gw-promo__headline--inline {
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 0.95;
  overflow-wrap: break-word;
  word-break: normal;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.25em;
  row-gap: 0.05em;
}

.gw-promo__headline-italic {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}

.gw-promo__headline--inline .gw-promo__headline-main {
  margin-right: 0;
}

.gw-promo__divider { background: currentColor; }

.gw-promo__divider--horizontal {
  height: 1px;
  width: 48px;
  opacity: 0.6;
}

.gw-promo__divider--vertical {
  width: 1px;
  height: 64px;
  opacity: 0.4;
  align-self: center;
}

@media (min-width: 1024px) {
  .gw-promo__divider--vertical { height: 80px; }
}

.gw-promo__details-main {
  font-family: var(--gw-promo-offer-font, var(--font-heading, 'EB Garamond', serif));
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 6px;
}

.gw-promo__details-main--mobile {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.gw-promo__details-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0;
}

@media (min-width: 1024px) {
  .gw-promo__details-sub { font-size: 11px; }
}

.gw-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gw-promo-cta-bg, #fcfbf7);
  color: var(--gw-promo-cta-fg, #2a332a);
  border-radius: var(--gw-promo-radius, 12px);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 300ms ease, background-color 300ms ease, color 300ms ease;
}

.gw-promo__cta--lg {
  padding: 14px 28px;
  letter-spacing: 0.32em;
}

@media (min-width: 1024px) {
  .gw-promo__cta--lg { padding: 16px 36px; }
}

.gw-promo__cta-arrow {
  width: 14px !important;
  height: 14px !important;
  transition: transform 300ms ease;
  flex-shrink: 0;
  display: inline-block;
}

@media (hover: hover) {
  .gw-promo__slide[href]:hover .gw-promo__cta { gap: 16px; }
  .gw-promo__slide[href]:hover .gw-promo__cta-arrow { transform: translateX(4px); }
}

.gw-promo__slide[href]:focus-visible .gw-promo__cta { gap: 16px; }
.gw-promo__slide[href]:focus-visible .gw-promo__cta-arrow { transform: translateX(4px); }

.gw-promo__layout--tiered-mobile {
  padding: var(--gw-promo-inner-py-mobile, 32px) var(--gw-promo-inner-px-mobile, 24px);
}

.gw-promo__tiered-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 8px;
}

.gw-promo__tiered-heading {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.gw-promo__eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
}

.gw-promo__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
  flex-shrink: 0;
}

.gw-promo__clearance-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.9;
  line-height: 1;
}

.gw-promo__layout--clearance-mobile .gw-promo__eyebrow-row {
  justify-content: center;
  margin: 0;
}

.gw-promo__layout--clearance-mobile .gw-promo__eyebrow-line {
  width: 24px;
  opacity: 0.6;
}

.gw-promo__layout--clearance-mobile .gw-promo__clearance-eyebrow {
  letter-spacing: 0.32em;
  opacity: 0.85;
}

.gw-promo__clearance-heading {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.gw-promo__clearance-sublabel {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 4px 0 0;
}

.gw-promo__clearance-subheading {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: clamp(1.25rem, 1.9vw, 1.625rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 4px;
}

.gw-promo__layout--clearance-mobile .gw-promo__clearance-subheading {
  text-align: center;
  margin: 0;
}

.gw-promo__cta--clearance {
  border-radius: 0;
  letter-spacing: 0.32em;
  font-weight: 700;
}

.gw-promo__tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.gw-promo__tiers--desktop {
  align-items: flex-start;
  gap: 12px;
}

.gw-promo__tier-line {
  margin: 0;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.gw-promo__tier-line--mobile {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: normal;
}

.gw-promo__tier-amount {
  font-weight: 500;
}

.gw-promo__tier-line .gw-promo__tier-amount {
  font-size: 1.15em;
}

.gw-promo__tier-line--mobile .gw-promo__tier-amount {
  font-size: 1em;
  font-weight: 700;
}

.gw-promo__tier-label {
  font-size: 0.7em;
  opacity: 0.7;
  margin-left: 0.3em;
}

.gw-promo__tier-line--mobile .gw-promo__tier-label {
  font-size: 1em;
  opacity: 0.75;
}

.gw-promo__tier-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.gw-promo__code {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, currentColor 40%, transparent);
  white-space: nowrap;
  box-sizing: border-box;
}

.gw-promo__code--copyable {
  position: relative;
  z-index: 2;
  background: transparent !important;
  color: inherit;
  font: inherit;
  text-align: inherit;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, transform 150ms ease;
  line-height: 1.2;
}

@media (hover: hover) {
  .gw-promo__code--copyable:hover {
    background: color-mix(in srgb, currentColor 8%, transparent);
    border-color: color-mix(in srgb, currentColor 70%, transparent);
  }
}

.gw-promo__code--copyable:active {
  transform: scale(0.98);
}

.gw-promo__code--copyable:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.gw-promo__code--copyable.is-copied {
  background: color-mix(in srgb, currentColor 12%, transparent);
  border-color: currentColor;
}

.gw-promo__code-feedback {
  position: absolute !important;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: inherit;
  background: var(--gw-promo-text, #fcfbf7);
  color: var(--gw-promo-banner-bg, #3a4031);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: visible;
  transition: opacity 200ms ease;
  pointer-events: none;
  box-sizing: border-box;
}

.gw-promo__code-feedback-icon {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  display: inline-block;
}

.gw-promo__code--copyable.is-copied .gw-promo__code-feedback {
  opacity: 1 !important;
}

.gw-promo__code--copyable.is-copied .gw-promo__code-icon,
.gw-promo__code--copyable.is-copied .gw-promo__code-line,
.gw-promo__code--copyable.is-copied .gw-promo__code-block {
  visibility: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  .gw-promo__code--copyable,
  .gw-promo__code-feedback { transition: none; }
}

.gw-promo__code-icon {
  width: 14px !important;
  height: 14px !important;
  opacity: 0.7;
  flex-shrink: 0;
  display: inline-block;
}

.gw-promo__code-line {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.gw-promo__code-line .gw-promo__code-value {
  letter-spacing: 0.3em;
}

.gw-promo__code--desktop {
  align-self: flex-end;
}

.gw-promo__code--desktop .gw-promo__code-block {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.gw-promo__code--desktop .gw-promo__code-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  opacity: 0.7;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.gw-promo__code--desktop .gw-promo__code-value {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.1;
}

.gw-promo__urgency {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin: 0 !important;
  padding: 8px 14px;
  background: var(--gw-promo-accent-bg, #c35330);
  color: var(--gw-promo-accent-fg, #fcfbf7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
}

.gw-promo__urgency-icon {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  display: inline-block;
}

.gw-promo__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 600ms cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 3;
}

.gw-promo__controls--inside {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  color: var(--gw-promo-controls-color, var(--gw-promo-text, #fcfbf7));
  opacity: 0.72;
}

@media (hover: hover) {
  .gw-promo__controls--inside:hover { opacity: 1; }
}

.gw-promo__controls--inside:focus-within {
  opacity: 1;
}

.gw-promo__controls--below {
  position: relative;
  margin-top: 16px;
  align-self: center;
  color: color-mix(in srgb, var(--gw-promo-outer-bg, #f0f0ec), black 75%);
}

.gw-promo__rotator--controls-inside .gw-promo__layout--mobile {
  padding-bottom: calc(var(--gw-promo-inner-py-mobile, 40px) + 28px);
}

.gw-promo .gw-promo__rotator--controls-inside .gw-promo__layout--desktop {
  padding-bottom: calc(var(--gw-promo-inner-py-desktop, 32px) + 28px);
}

.gw-promo__nav {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 200ms ease, transform 150ms ease;
}

@media (hover: hover) {
  .gw-promo__nav:hover { opacity: 1; }
}

.gw-promo__nav:active { transform: scale(0.92); }

.gw-promo__nav:focus-visible {
  outline: 1.5px solid currentColor;
  outline-offset: 2px;
  border-radius: 2px;
}

.gw-promo__nav-icon {
  width: 12px !important;
  height: 12px !important;
  display: block;
}

.gw-promo__dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gw-promo__dot {
  appearance: none;
  background: currentColor;
  border: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 250ms ease, width 300ms cubic-bezier(0.45, 0, 0.55, 1);
}

@media (hover: hover) {
  .gw-promo__dot:hover { opacity: 0.75; }
}

.gw-promo__dot.is-active {
  opacity: 1;
  width: 22px;
}

.gw-promo__dot:focus-visible {
  outline: 1.5px solid currentColor;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .gw-promo__dot,
  .gw-promo__nav,
  .gw-promo__controls { transition: none; }
  .gw-promo__nav:active { transform: none; }
}
/* END_SECTION:pj_condensedpromobanner */

/* START_SECTION:pj_dualcategorybanner (INDEX:12) */
.pj-dcb {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--pj-dcb-bg, #F5F1EC);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  color: var(--pj-dcb-heading, #2C2C2C);
  box-sizing: border-box;
  overflow: hidden;
}

.pj-dcb__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--pj-dcb-max-width, 1280px);
  margin: 0 auto;
  padding: var(--pj-dcb-pad-y-mobile, 40px) 24px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-dcb__inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media (min-width: 1024px) {
  .pj-dcb__inner {
    padding-top: var(--pj-dcb-pad-y-desktop, 56px);
    padding-bottom: var(--pj-dcb-pad-y-desktop, 56px);
  }
}

/* === Eyebrow row === */
.pj-dcb__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 32px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .pj-dcb__eyebrow-row {
    margin-bottom: 40px;
  }
}

.pj-dcb__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--pj-dcb-accent, #C1694F);
  flex-shrink: 0;
}

.pj-dcb__eyebrow-line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--pj-dcb-divider, rgba(44, 44, 44, 0.2));
  min-width: 12px;
}

.pj-dcb__eyebrow-text {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pj-dcb-eyebrow, #C1694F);
  white-space: nowrap;
  flex-shrink: 0;
}

/* === Grid === */
.pj-dcb__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .pj-dcb__grid {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    text-align: left;
  }
}

/* === Heading === */
.pj-dcb__heading-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .pj-dcb__heading-col {
    width: 50%;
    flex-shrink: 0;
  }
}

.pj-dcb__heading {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 300;
  font-size: var(--pj-dcb-heading-size-mobile, 48px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--pj-dcb-heading, #2C2C2C);
  margin: 0;
  overflow-wrap: break-word;
}

@media (min-width: 1024px) {
  .pj-dcb__heading {
    font-size: var(--pj-dcb-heading-size-desktop, 96px);
  }
}

.pj-dcb__cat {
  font-family: inherit;
  font-style: normal;
}

.pj-dcb__connector {
  color: var(--pj-dcb-accent, #C1694F);
  font-style: italic;
  font-weight: 300;
}

/* === Info column === */
.pj-dcb__info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

@media (min-width: 1024px) {
  .pj-dcb__info-col {
    width: 50%;
    max-width: 520px;
    align-items: flex-start;
    padding-bottom: 8px;
  }
}

/* === Tagline (richtext) === */
.pj-dcb__tagline {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-size: var(--pj-dcb-tagline-size-mobile, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--pj-dcb-tagline, rgba(44, 44, 44, 0.7));
  margin: 0;
}

@media (min-width: 1024px) {
  .pj-dcb__tagline {
    font-size: var(--pj-dcb-tagline-size-desktop, 30px);
  }
}

.pj-dcb__tagline p {
  margin: 0;
}

.pj-dcb__tagline p + p {
  margin-top: 0.25em;
}

.pj-dcb__tagline em,
.pj-dcb__tagline i {
  font-style: italic;
  font-weight: 400;
}

.pj-dcb__tagline strong,
.pj-dcb__tagline b {
  font-weight: 500;
}

/* === CTAs === */
.pj-dcb__cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .pj-dcb__cta-row {
    justify-content: flex-start;
  }
}

.pj-dcb__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--pj-dcb-cta-border, #2C2C2C);
  background-color: transparent;
  color: var(--pj-dcb-cta-text, #2C2C2C);
  padding: 12px 20px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

.pj-dcb__cta-text {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: inherit;
}

.pj-dcb__cta-arrow {
  flex-shrink: 0;
  transition: transform 300ms ease;
}

@media (hover: hover) {
  .pj-dcb__cta:hover {
    background-color: var(--pj-dcb-cta-bg-hover, #2C2C2C);
    color: var(--pj-dcb-cta-text-hover, #FAF8F5);
    border-color: var(--pj-dcb-cta-bg-hover, #2C2C2C);
  }

  .pj-dcb__cta:hover .pj-dcb__cta-arrow {
    transform: translateX(4px);
  }
}

.pj-dcb__cta:focus-visible {
  outline: 2px solid var(--pj-dcb-cta-border, #2C2C2C);
  outline-offset: 3px;
}

/* === Motion === */
.pj-dcb__enter {
  opacity: 0;
  animation-duration: 800ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

.pj-dcb__enter--header {
  transform: translateY(-20px);
  animation-name: pj-dcb-enter-header;
  animation-delay: 0ms;
}

.pj-dcb__enter--from-left {
  transform: translateX(-30px);
  animation-name: pj-dcb-enter-from-left;
  animation-delay: 200ms;
}

.pj-dcb__enter--from-right {
  transform: translateX(30px);
  animation-name: pj-dcb-enter-from-right;
  animation-delay: 400ms;
}

@keyframes pj-dcb-enter-header {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pj-dcb-enter-from-left {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pj-dcb-enter-from-right {
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pj-dcb__enter,
  .pj-dcb__enter--header,
  .pj-dcb__enter--from-left,
  .pj-dcb__enter--from-right {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pj-dcb__cta,
  .pj-dcb__cta-arrow {
    transition: none;
  }

  .pj-dcb__cta:hover .pj-dcb__cta-arrow {
    transform: none;
  }
}

section.shopify-section.shopify-section--pj-dual-category {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_dualcategorybanner */

/* START_SECTION:pj_featuredproductsstrip (INDEX:13) */
.featured-products-strip {
  background: var(--fps-bg, #faf8f5);
  color: var(--fps-text, #2c2c2c);
  padding-block: var(--fps-padding-block, 64px);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}

.featured-products-strip__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 64px);
}

.featured-products-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 32px;
}

.featured-products-strip__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fps-eyebrow, rgba(44, 44, 44, 0.6));
  margin: 0;
}

.featured-products-strip__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 150ms ease, background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

/* === Text style (default) === */
.featured-products-strip__view-all--text {
  color: var(--fps-accent, #c1694f);
}

@media (hover: hover) {
  .featured-products-strip__view-all--text:hover { opacity: 0.8; }
}

.featured-products-strip__view-all--text:focus-visible { opacity: 0.8; }

/* === Box style === */
.featured-products-strip__view-all--box {
  background-color: var(--fps-link-box-bg, #2D4A3E);
  color: var(--fps-link-box-fg, #FAF8F5);
  padding: var(--fps-link-box-pad-y, 10px) var(--fps-link-box-pad-x, 20px);
  border-radius: var(--fps-link-box-radius, 2px);
}

@media (hover: hover) {
  .featured-products-strip__view-all--box:hover {
    background-color: var(--fps-link-box-bg-hover, #C1694F);
    color: var(--fps-link-box-fg-hover, #FAF8F5);
  }
}

.featured-products-strip__view-all--box:focus-visible {
  outline: 2px solid var(--fps-accent, #c1694f);
  outline-offset: 2px;
}

/* === Arrow (works on both text + box styles) === */
.featured-products-strip__view-all-arrow {
  flex-shrink: 0;
  transition: transform 200ms ease;
  transform: translateX(0);
}

@media (hover: hover) {
  .featured-products-strip__view-all--with-arrow:hover .featured-products-strip__view-all-arrow {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-products-strip__view-all-arrow,
  .featured-products-strip__view-all--with-arrow:hover .featured-products-strip__view-all-arrow {
    transition: none;
    transform: none;
  }
}

.featured-products-strip__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .featured-products-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .featured-products-strip__strip {
    position: relative;
  }

  .featured-products-strip__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 32px;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--fps-muted, #717182) 55%, transparent) transparent;
    padding-bottom: 14px;
  }

  .featured-products-strip__grid::-webkit-scrollbar {
    height: 8px;
  }

  .featured-products-strip__grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .featured-products-strip__grid::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--fps-muted, #717182) 55%, transparent);
    border-radius: 4px;
  }

  .featured-products-strip__grid::-webkit-scrollbar-thumb:hover {
    background: color-mix(in srgb, var(--fps-muted, #717182) 85%, transparent);
  }

}

pj-fps-strip {
  display: block;
}

.featured-products-strip__nav {
  display: none;
}

@media (min-width: 1024px) {
  .featured-products-strip__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: var(--fps-arrow-w, 56px);
    height: var(--fps-arrow-h, 56px);
    background: var(--fps-arrow-bg, #1a1a1a);
    color: var(--fps-arrow-fg, #ffffff);
    border: 0;
    border-radius: var(--fps-arrow-radius, 0px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, background-color 220ms ease, visibility 0s 220ms;
  }

  .featured-products-strip__nav.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 220ms ease, background-color 220ms ease, visibility 0s;
  }

  .featured-products-strip__nav--prev { left: var(--fps-arrow-offset, 0px); }
  .featured-products-strip__nav--next { right: var(--fps-arrow-offset, 0px); }

  .featured-products-strip__nav:focus-visible {
    outline: 2px solid var(--fps-accent, #c1694f);
    outline-offset: 3px;
  }

  .featured-products-strip__nav svg {
    display: block;
  }

  .featured-products-strip__strip--peek .featured-products-strip__item {
    flex-basis: calc((100% - 96px - var(--fps-peek, 60px)) / 4);
  }
}

@media (min-width: 1024px) and (hover: hover) {
  .featured-products-strip__nav:hover {
    background: color-mix(in srgb, var(--fps-arrow-bg, #1a1a1a) 82%, #000);
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-products-strip__nav {
    transition: opacity 0s, background-color 0s, visibility 0s;
  }
}

.featured-products-strip__item {
  display: flex;
  animation: fps-fade-in 600ms ease-out var(--fps-delay, 0ms) both;
}

@media (min-width: 1024px) {
  .featured-products-strip__item {
    flex: 0 0 calc((100% - 96px) / 4);
    min-width: 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 1023px) {
  .featured-products-strip__strip--mobile-scroll {
    /* Punch out to the screen edges so cards can scroll edge-to-edge. */
    margin-inline: calc(-1 * clamp(16px, 4vw, 64px));
  }

  .featured-products-strip__strip--mobile-scroll .featured-products-strip__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--fps-muted, #717182) 55%, transparent) transparent;
    /* Inset cards back to the original padded position. */
    padding-inline: clamp(16px, 4vw, 64px);
    padding-bottom: 10px;
    scroll-padding-inline-start: clamp(16px, 4vw, 64px);
  }

  .featured-products-strip__strip--mobile-scroll .featured-products-strip__grid::-webkit-scrollbar {
    height: 6px;
  }
  .featured-products-strip__strip--mobile-scroll .featured-products-strip__grid::-webkit-scrollbar-track {
    background: transparent;
  }
  .featured-products-strip__strip--mobile-scroll .featured-products-strip__grid::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--fps-muted, #717182) 55%, transparent);
    border-radius: 4px;
  }

  .featured-products-strip__strip--mobile-scroll .featured-products-strip__item {
    flex: 0 0 var(--fps-mobile-card-pct, 85%);
    min-width: 0;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-products-strip__item {
    animation: none;
  }

  .pick-card {
    transform: none;
    transition: none;
  }

  .pick-card__image {
    transition: none;
  }

  .featured-products-strip .pick-card__cta {
    transition: none;
  }
}

@keyframes fps-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.pick-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--fps-card-bg, #ffffff);
  border: 1px solid var(--fps-card-border, rgba(0, 0, 0, 0.1));
  box-shadow: 0 8px 32px 0 rgba(60, 75, 60, 0.08);
  transform: translateY(-3px);
  /* Only transform here. PJ_FeaturedProductsStrip renders 5–6× per page with
     up to 8 cards each — transitioning box-shadow on hover means up to ~48
     blurred-filter repaints per cursor move. */
  transition: transform 300ms ease-out;
}

@media (hover: hover) {
  .pick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px 0 rgba(60, 75, 60, 0.12);
  }
}

.pick-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f1ec;
}

.pick-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-out;
}

@media (hover: hover) {
  .pick-card:hover .pick-card__image {
    transform: scale(1.05);
  }
}

.pick-card__image--placeholder,
.pick-card__placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pick-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--fps-badge-bg, var(--fps-primary, #2d4a3e));
  color: var(--fps-badge-fg, var(--fps-primary-fg, #faf8f5));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.pick-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  gap: 6px;
}

.pick-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-block-end: 2px;
  font-size: 11.5px;
  color: var(--fps-muted, #717182);
}

.pick-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.pick-card__star {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  line-height: 0;
}

.pick-card__star-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pick-card__star-icon--bg {
  fill: color-mix(in srgb, var(--fps-accent, #c1694f) 22%, transparent);
}

.pick-card__star-icon--fg {
  fill: var(--fps-accent, #c1694f);
  clip-path: inset(0 100% 0 0);
}

.pick-card__star--half .pick-card__star-icon--fg {
  clip-path: inset(0 50% 0 0);
}

.pick-card__star--filled .pick-card__star-icon--fg {
  clip-path: inset(0);
}

.pick-card__rating-value {
  font-weight: 500;
  color: var(--fps-text, #2c2c2c);
  font-variant-numeric: tabular-nums;
}

.pick-card__rating-count {
  color: var(--fps-muted, #717182);
}

.pick-card__nickname {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-style: italic;
  font-size: 13.2px;
  line-height: 17px;
  color: color-mix(in srgb, var(--fps-primary, #2d4a3e) 80%, transparent);
  margin: 0;
}

.pick-card__title {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 500;
  color: var(--fps-text, #2c2c2c);
  margin: 0;
}

.pick-card__title a {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  .pick-card__title a:hover {
    text-decoration: underline;
  }
}

.pick-card__title a:focus-visible {
  text-decoration: underline;
}

.pick-card__title a:focus-visible {
  outline: 2px solid var(--fps-accent, #c1694f);
  outline-offset: 2px;
}

.pick-card__media:focus-visible {
  outline: 2px solid var(--fps-accent, #c1694f);
  outline-offset: 2px;
}

.pick-card__blurb {
  flex: 1;
  font-size: 12.8px;
  line-height: 19.2px;
  color: var(--fps-muted, #717182);
  margin: 4px 0 16px;
}

.pick-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.pick-card__price {
  font-size: 15.2px;
  font-weight: 500;
  color: var(--fps-text, #2c2c2c);
}

.pick-card__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.pick-card__pricing-row {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 8px;
  white-space: nowrap;
}

.pick-card__price--sale {
  color: var(--fps-accent, #c1694f);
  font-weight: 600;
}

.pick-card__price-compare {
  font-size: 13px;
  font-weight: 400;
  color: var(--fps-muted, #717182);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: color-mix(in srgb, var(--fps-muted, #717182) 70%, transparent);
}

.pick-card__savings {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: var(--fps-accent, #c1694f);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 3px;
  line-height: 1.4;
  white-space: nowrap;
}

.featured-products-strip .pick-card__form {
  margin: 0;
  padding: 0;
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.featured-products-strip .pick-card__cta {
  border: 0;
  cursor: pointer;
  padding: 8px 14px;
  min-width: 96px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fps-primary-fg, #faf8f5);
  background: var(--fps-primary, #2d4a3e);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: background 150ms ease, transform 150ms ease;
}

.pick-card:hover .pick-card__cta,
.pick-card:focus-within .pick-card__cta {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (hover: hover) {
  .featured-products-strip .pick-card__cta:hover:not(:disabled) {
    background: color-mix(in srgb, var(--fps-primary, #2d4a3e) 88%, black);
  }
}

.featured-products-strip .pick-card__cta:focus-visible:not(:disabled) {
  background: color-mix(in srgb, var(--fps-primary, #2d4a3e) 88%, black);
}

.featured-products-strip .pick-card__cta:active:not(:disabled) {
  transform: translateY(1px);
}

.featured-products-strip .pick-card__cta:focus-visible {
  outline: 2px solid var(--fps-accent, #c1694f);
  outline-offset: 2px;
}

.featured-products-strip .pick-card__cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.featured-products-strip .pick-card__cta[aria-busy='true'],
.featured-products-strip .pick-card__cta.is-loading {
  cursor: progress;
  background: color-mix(in srgb, var(--fps-primary, #2d4a3e) 85%, transparent);
}

.featured-products-strip .pick-card__cta.is-success {
  background: color-mix(in srgb, var(--fps-primary, #2d4a3e) 92%, white);
}
/* END_SECTION:pj_featuredproductsstrip */

/* START_SECTION:pj_herobanner_fullbleedimagetextoverlay (INDEX:14) */
.sgh {
  position: relative;
  width: 100%;
  height: 88vh;
  height: var(--sgh-height-vh, 88vh);
  min-height: 580px;
  min-height: var(--sgh-min-height, 580px);
  max-height: 1100px;
  overflow: clip;
  background: #2d4a3e;
  background: var(--sgh-fallback-bg, #2d4a3e);
  font-family: 'Rubik', system-ui, sans-serif;
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  color: #ffffff;
  color: var(--sgh-text, #ffffff);
  display: block;
}

.sgh__rotator {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.sgh__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sgh__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.sgh__slide.is-active,
.sgh__slide.is-exiting {
  visibility: visible;
}

.sgh__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.sgh__slide.is-exiting {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.sgh__empty {
  padding: 4rem 2rem;
  text-align: center;
  color: var(--sgh-text-muted, #ffffff);
}

.sgh__media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sgh__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sgh__image--placeholder {
  background-color: #2d4a3e;
  background-image: linear-gradient(135deg, #2d4a3e 0%, #486c5a 100%);
}

.sgh__image--mobile {
  display: none;
}

@media (max-width: 767px) {
  .sgh__slide--has-mobile .sgh__image--desktop {
    display: none;
  }
  .sgh__slide--has-mobile .sgh__image--mobile {
    display: block;
  }
}

.sgh__scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.sgh__scrim--bottom {
  background: linear-gradient(
    to top,
    #10140e 0%,
    rgba(16, 20, 14, 0.62) 38%,
    rgba(16, 20, 14, 0.18) 65%,
    rgba(16, 20, 14, 0) 100%
  );
  background: linear-gradient(
    to top,
    var(--sgh-scrim-color, #10140e) 0%,
    rgba(16, 20, 14, 0.62) 38%,
    rgba(16, 20, 14, 0.18) 65%,
    rgba(16, 20, 14, 0) 100%
  );
  opacity: 0.92;
  opacity: var(--sgh-bottom-gradient-opacity, 0.92);
}

.sgh__scrim--left {
  background: linear-gradient(
    to right,
    #10140e 0%,
    rgba(16, 20, 14, 0) 55%
  );
  background: linear-gradient(
    to right,
    var(--sgh-scrim-color, #10140e) 0%,
    rgba(16, 20, 14, 0) 55%
  );
  opacity: 0.55;
  opacity: var(--sgh-left-vignette-opacity, 0.55);
}

.sgh__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 56px;
  padding: var(--sgh-pad-y, 80px) var(--sgh-pad-x, 56px);
  pointer-events: none;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .sgh__content {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.sgh--align-bottom .sgh__content { align-items: flex-end; }
.sgh--align-center .sgh__content { align-items: center; }
.sgh--align-top .sgh__content { align-items: flex-start; }

.sgh--text-left .sgh__content { justify-content: flex-start; }
.sgh--text-center .sgh__content { justify-content: center; }

.sgh__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-width: var(--sgh-content-max-width, 520px);
  pointer-events: auto;
}

.sgh--text-center .sgh__inner {
  align-items: center;
  text-align: center;
}

.sgh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  color: var(--sgh-eyebrow, rgba(255, 255, 255, 0.6));
  margin: 0 0 20px 0;
}

.sgh__eyebrow-hairline {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.sgh__heading {
  font-family: 'EB Garamond', serif;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 400;
  font-size: 4rem;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.05;
  color: #ffffff;
  color: var(--sgh-text, #ffffff);
  margin: 0 0 20px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.sgh__heading-line {
  display: block;
}

.sgh__divider {
  display: block;
  width: 40px;
  height: 1px;
  background: #c35330;
  background: var(--sgh-accent, #c35330);
  margin: 0 0 24px 0;
}

.sgh--text-center .sgh__divider {
  margin-left: auto;
  margin-right: auto;
}

.sgh__body {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  color: var(--sgh-text-muted, rgba(255, 255, 255, 0.78));
  margin: 0 0 36px 0;
  max-width: 24em;
}

.sgh--text-center .sgh__body {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .sgh__body {
    font-size: 1.0625rem;
  }
}

.sgh__body p {
  margin: 0 0 0.75em 0;
}

.sgh__body p:last-child {
  margin-bottom: 0;
}

.sgh__cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 600px) {
  .sgh__cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
}

.sgh--text-center .sgh__cta-row {
  justify-content: center;
}

.sgh__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}

.sgh__cta:focus-visible {
  outline: 2px solid #c35330;
  outline: 2px solid var(--sgh-accent, #c35330);
  outline-offset: 3px;
}

.sgh__cta--primary {
  background: #c35330;
  background: var(--sgh-primary-bg, #c35330);
  color: #ffffff;
  color: var(--sgh-primary-fg, #ffffff);
  border-color: #c35330;
  border-color: var(--sgh-primary-bg, #c35330);
}

.sgh__cta--primary:focus-visible {
  background: #a8421e;
  background: var(--sgh-primary-bg-hover, #a8421e);
  border-color: #a8421e;
  border-color: var(--sgh-primary-bg-hover, #a8421e);
  color: #ffffff;
  color: var(--sgh-primary-fg-hover, #ffffff);
}

@media (hover: hover) {
  .sgh__cta--primary:hover {
    background: #a8421e;
    background: var(--sgh-primary-bg-hover, #a8421e);
    border-color: #a8421e;
    border-color: var(--sgh-primary-bg-hover, #a8421e);
    color: #ffffff;
    color: var(--sgh-primary-fg-hover, #ffffff);
  }
}

.sgh__cta--secondary {
  background: transparent;
  color: #ffffff;
  color: var(--sgh-secondary-fg, #ffffff);
  border-color: rgba(255, 255, 255, 0.5);
  border-color: var(--sgh-secondary-border, rgba(255, 255, 255, 0.5));
}

.sgh__cta--secondary:focus-visible {
  background: #ffffff;
  background: var(--sgh-secondary-bg-hover, #ffffff);
  color: #2c2c2c;
  color: var(--sgh-secondary-fg-hover, #2c2c2c);
  border-color: #ffffff;
  border-color: var(--sgh-secondary-bg-hover, #ffffff);
}

@media (hover: hover) {
  .sgh__cta--secondary:hover {
    background: #ffffff;
    background: var(--sgh-secondary-bg-hover, #ffffff);
    color: #2c2c2c;
    color: var(--sgh-secondary-fg-hover, #2c2c2c);
    border-color: #ffffff;
    border-color: var(--sgh-secondary-bg-hover, #ffffff);
  }
}

.sgh__cta-arrow {
  flex-shrink: 0;
  transition: transform 250ms ease;
}

.sgh__cta:focus-visible .sgh__cta-arrow {
  transform: translateX(4px);
}

@media (hover: hover) {
  .sgh__cta:hover .sgh__cta-arrow {
    transform: translateX(4px);
  }
}

.sgh__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 20, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transition: opacity 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.sgh__nav svg { display: block; }

.sgh__nav--prev { left: 16px; }
.sgh__nav--next { right: 16px; }

@media (min-width: 768px) {
  .sgh__nav--prev { left: 28px; }
  .sgh__nav--next { right: 28px; }
}

@media (hover: hover) {
  .sgh:hover .sgh__nav,
  .sgh:focus-within .sgh__nav {
    opacity: 1;
  }
  .sgh__nav:hover {
    background: rgba(16, 20, 14, 0.62);
    border-color: rgba(255, 255, 255, 0.6);
  }
}

@media (hover: none) {
  .sgh__nav { opacity: 0.85; }
}

.sgh__nav:focus-visible {
  opacity: 1;
  outline: 2px solid var(--sgh-accent, #c35330);
  outline-offset: 3px;
}

.sgh__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(16, 20, 14, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sgh__dot {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
}

.sgh__dot-inner {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background-color 220ms ease, transform 220ms ease;
}

.sgh__dot.is-active .sgh__dot-inner {
  background: #ffffff;
  transform: scale(1.35);
}

.sgh__dot:focus-visible {
  outline: 2px solid var(--sgh-accent, #c35330);
  outline-offset: 3px;
}

@media (hover: hover) {
  .sgh__dot:hover .sgh__dot-inner {
    background: rgba(255, 255, 255, 0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sgh__slide,
  .sgh__cta,
  .sgh__cta-arrow,
  .sgh__nav,
  .sgh__dot-inner {
    transition: none;
  }
  .sgh__cta:focus-visible .sgh__cta-arrow,
  .sgh__cta:hover .sgh__cta-arrow {
    transform: none;
  }
}

@media (max-width: 599px) {
  .sgh__cta {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

section.shopify-section.shopify-section--pj-hero-full-bleed {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_herobanner_fullbleedimagetextoverlay */

/* START_SECTION:pj_herofullbleed (INDEX:15) */
.sgh {
  position: relative;
  width: 100%;
  height: 88vh;
  height: var(--sgh-height-vh, 88vh);
  min-height: 580px;
  min-height: var(--sgh-min-height, 580px);
  max-height: 1100px;
  overflow: clip;
  background: #2d4a3e;
  background: var(--sgh-fallback-bg, #2d4a3e);
  font-family: 'Rubik', system-ui, sans-serif;
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  color: #ffffff;
  color: var(--sgh-text, #ffffff);
  display: block;
}

.sgh__rotator {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.sgh__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sgh__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.sgh__slide.is-active,
.sgh__slide.is-exiting {
  visibility: visible;
}

.sgh__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.sgh__slide.is-exiting {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.sgh__empty {
  padding: 4rem 2rem;
  text-align: center;
  color: var(--sgh-text-muted, #ffffff);
}

.sgh__media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sgh__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sgh__image--placeholder {
  background-color: #2d4a3e;
  background-image: linear-gradient(135deg, #2d4a3e 0%, #486c5a 100%);
}

.sgh__image--mobile {
  display: none;
}

@media (max-width: 767px) {
  .sgh__slide--has-mobile .sgh__image--desktop {
    display: none;
  }
  .sgh__slide--has-mobile .sgh__image--mobile {
    display: block;
  }
}

.sgh__scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.sgh__scrim--bottom {
  background: linear-gradient(
    to top,
    #10140e 0%,
    rgba(16, 20, 14, 0.62) 38%,
    rgba(16, 20, 14, 0.18) 65%,
    rgba(16, 20, 14, 0) 100%
  );
  background: linear-gradient(
    to top,
    var(--sgh-scrim-color, #10140e) 0%,
    rgba(16, 20, 14, 0.62) 38%,
    rgba(16, 20, 14, 0.18) 65%,
    rgba(16, 20, 14, 0) 100%
  );
  opacity: 0.92;
  opacity: var(--sgh-bottom-gradient-opacity, 0.92);
}

.sgh__scrim--top {
  background: linear-gradient(
    to bottom,
    #10140e 0%,
    rgba(16, 20, 14, 0.62) 38%,
    rgba(16, 20, 14, 0.18) 65%,
    rgba(16, 20, 14, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    var(--sgh-scrim-color, #10140e) 0%,
    rgba(16, 20, 14, 0.62) 38%,
    rgba(16, 20, 14, 0.18) 65%,
    rgba(16, 20, 14, 0) 100%
  );
  opacity: 0.65;
  opacity: var(--sgh-top-gradient-opacity, 0.65);
}

.sgh__scrim--left {
  background: linear-gradient(
    to right,
    #10140e 0%,
    rgba(16, 20, 14, 0) 55%
  );
  background: linear-gradient(
    to right,
    var(--sgh-scrim-color, #10140e) 0%,
    rgba(16, 20, 14, 0) 55%
  );
  opacity: 0.55;
  opacity: var(--sgh-left-vignette-opacity, 0.55);
}

.sgh__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 56px;
  padding: var(--sgh-pad-y, 80px) var(--sgh-pad-x, 56px);
  pointer-events: none;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .sgh__content {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.sgh--align-bottom .sgh__content { align-items: flex-end; }
.sgh--align-center .sgh__content { align-items: center; }
.sgh--align-top .sgh__content { align-items: flex-start; }

.sgh--text-left .sgh__content { justify-content: flex-start; }
.sgh--text-center .sgh__content { justify-content: center; }
.sgh--text-right .sgh__content { justify-content: flex-end; }

.sgh__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-width: var(--sgh-content-max-width, 520px);
  pointer-events: auto;
}

.sgh--text-center .sgh__inner {
  align-items: center;
  text-align: center;
}

.sgh--text-right .sgh__inner {
  align-items: flex-end;
  text-align: right;
}

.sgh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  color: var(--sgh-eyebrow, rgba(255, 255, 255, 0.6));
  margin: 0 0 20px 0;
}

.sgh__eyebrow-hairline {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.sgh__heading {
  font-family: 'EB Garamond', serif;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 400;
  font-size: 4rem;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.05;
  color: #ffffff;
  color: var(--sgh-text, #ffffff);
  margin: 0 0 20px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.sgh__heading-line {
  display: block;
}

.sgh__divider {
  display: block;
  width: 40px;
  height: 1px;
  background: #c35330;
  background: var(--sgh-accent, #c35330);
  margin: 0 0 24px 0;
}

.sgh--text-center .sgh__divider {
  margin-left: auto;
  margin-right: auto;
}

.sgh__body {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  color: var(--sgh-text-muted, rgba(255, 255, 255, 0.78));
  margin: 0 0 36px 0;
  max-width: 24em;
}

.sgh--text-center .sgh__body {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .sgh__body {
    font-size: 1.0625rem;
  }
}

.sgh__body p {
  margin: 0 0 0.75em 0;
}

.sgh__body p:last-child {
  margin-bottom: 0;
}

.sgh__cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 600px) {
  .sgh__cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
}

.sgh--text-center .sgh__cta-row {
  justify-content: center;
}

.sgh--text-right .sgh__cta-row {
  justify-content: flex-end;
}

.sgh--text-right .sgh__divider,
.sgh--text-right .sgh__body {
  margin-left: auto;
  margin-right: 0;
}

/* Per-slide text alignment — overrides the section default (must follow the
   section-level rules so equal-specificity selectors win via source order). */
.sgh__slide--text-left .sgh__content { justify-content: flex-start; }
.sgh__slide--text-center .sgh__content { justify-content: center; }
.sgh__slide--text-right .sgh__content { justify-content: flex-end; }

.sgh__slide--text-left .sgh__inner { align-items: flex-start; text-align: left; }
.sgh__slide--text-center .sgh__inner { align-items: center; text-align: center; }
.sgh__slide--text-right .sgh__inner { align-items: flex-end; text-align: right; }

.sgh__slide--text-left .sgh__divider,
.sgh__slide--text-left .sgh__body { margin-left: 0; margin-right: 0; }
.sgh__slide--text-center .sgh__divider,
.sgh__slide--text-center .sgh__body { margin-left: auto; margin-right: auto; }
.sgh__slide--text-right .sgh__divider,
.sgh__slide--text-right .sgh__body { margin-left: auto; margin-right: 0; }

.sgh__slide--text-left .sgh__cta-row { justify-content: flex-start; }
.sgh__slide--text-center .sgh__cta-row { justify-content: center; }
.sgh__slide--text-right .sgh__cta-row { justify-content: flex-end; }

.sgh__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}

.sgh__cta:focus-visible {
  outline: 2px solid #c35330;
  outline: 2px solid var(--sgh-accent, #c35330);
  outline-offset: 3px;
}

.sgh__cta--primary {
  background: #c35330;
  background: var(--sgh-primary-bg, #c35330);
  color: #ffffff;
  color: var(--sgh-primary-fg, #ffffff);
  border-color: #c35330;
  border-color: var(--sgh-primary-bg, #c35330);
}

.sgh__cta--primary:focus-visible {
  background: #a8421e;
  background: var(--sgh-primary-bg-hover, #a8421e);
  border-color: #a8421e;
  border-color: var(--sgh-primary-bg-hover, #a8421e);
  color: #ffffff;
  color: var(--sgh-primary-fg-hover, #ffffff);
}

@media (hover: hover) {
  .sgh__cta--primary:hover {
    background: #a8421e;
    background: var(--sgh-primary-bg-hover, #a8421e);
    border-color: #a8421e;
    border-color: var(--sgh-primary-bg-hover, #a8421e);
    color: #ffffff;
    color: var(--sgh-primary-fg-hover, #ffffff);
  }
}

.sgh__cta--secondary {
  background: transparent;
  color: #ffffff;
  color: var(--sgh-secondary-fg, #ffffff);
  border-color: rgba(255, 255, 255, 0.5);
  border-color: var(--sgh-secondary-border, rgba(255, 255, 255, 0.5));
}

.sgh__cta--secondary:focus-visible {
  background: #ffffff;
  background: var(--sgh-secondary-bg-hover, #ffffff);
  color: #2c2c2c;
  color: var(--sgh-secondary-fg-hover, #2c2c2c);
  border-color: #ffffff;
  border-color: var(--sgh-secondary-bg-hover, #ffffff);
}

@media (hover: hover) {
  .sgh__cta--secondary:hover {
    background: #ffffff;
    background: var(--sgh-secondary-bg-hover, #ffffff);
    color: #2c2c2c;
    color: var(--sgh-secondary-fg-hover, #2c2c2c);
    border-color: #ffffff;
    border-color: var(--sgh-secondary-bg-hover, #ffffff);
  }
}

.sgh__cta-arrow {
  flex-shrink: 0;
  transition: transform 250ms ease;
}

.sgh__cta:focus-visible .sgh__cta-arrow {
  transform: translateX(4px);
}

@media (hover: hover) {
  .sgh__cta:hover .sgh__cta-arrow {
    transform: translateX(4px);
  }
}

.sgh__burst {
  position: absolute;
  z-index: 3;
  width: var(--sgh-burst-size, 190px);
  height: var(--sgh-burst-size, 190px);
  pointer-events: none;
  transform: rotate(var(--sgh-burst-rotate, 0deg));
  filter: drop-shadow(0 10px 24px rgba(16, 20, 14, 0.28));
}

.sgh__burst--pos-top-right { top: 36px; right: var(--sgh-pad-x, 56px); }
.sgh__burst--pos-top-left { top: 36px; left: var(--sgh-pad-x, 56px); }
.sgh__burst--pos-bottom-right { bottom: 36px; right: var(--sgh-pad-x, 56px); }
.sgh__burst--pos-bottom-left { bottom: 36px; left: var(--sgh-pad-x, 56px); }

.sgh__burst-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f7f2e6;
  background: var(--sgh-burst-bg, #f7f2e6);
  color: #2e4a3b;
  color: var(--sgh-burst-fg, #2e4a3b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  padding: 13%;
  box-sizing: border-box;
}

.sgh__burst--dotted .sgh__burst-card::before,
.sgh__burst--double .sgh__burst-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px dashed var(--sgh-burst-accent, #c04c2b);
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
}

.sgh__burst--double .sgh__burst-card::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1.5px solid var(--sgh-burst-accent, #c04c2b);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.sgh__burst--seal .sgh__burst-card {
  border-radius: 0;
  padding: 16%;
  clip-path: polygon(50.00% 0.00%, 54.87% 6.77%, 61.13% 1.25%, 64.37% 8.94%, 71.69% 4.95%, 73.14% 13.17%, 81.17% 10.91%, 80.76% 19.24%, 89.09% 18.83%, 86.83% 26.86%, 95.05% 28.31%, 91.06% 35.63%, 98.75% 38.87%, 93.23% 45.13%, 100.00% 50.00%, 93.23% 54.87%, 98.75% 61.13%, 91.06% 64.37%, 95.05% 71.69%, 86.83% 73.14%, 89.09% 81.17%, 80.76% 80.76%, 81.17% 89.09%, 73.14% 86.83%, 71.69% 95.05%, 64.37% 91.06%, 61.13% 98.75%, 54.87% 93.23%, 50.00% 100.00%, 45.13% 93.23%, 38.87% 98.75%, 35.63% 91.06%, 28.31% 95.05%, 26.86% 86.83%, 18.83% 89.09%, 19.24% 80.76%, 10.91% 81.17%, 13.17% 73.14%, 4.95% 71.69%, 8.94% 64.37%, 1.25% 61.13%, 6.77% 54.87%, 0.00% 50.00%, 6.77% 45.13%, 1.25% 38.87%, 8.94% 35.63%, 4.95% 28.31%, 13.17% 26.86%, 10.91% 18.83%, 19.24% 19.24%, 18.83% 10.91%, 26.86% 13.17%, 28.31% 4.95%, 35.63% 8.94%, 38.87% 1.25%, 45.13% 6.77%);
}

.sgh__burst--seal .sgh__burst-card::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1.5px dashed var(--sgh-burst-accent, #c04c2b);
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
}

.sgh__burst-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--sgh-burst-accent, #c04c2b);
  display: block;
}

.sgh__burst-headline {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
  font-size: clamp(0.625rem, calc(var(--sgh-burst-size, 190px) * 0.072), 1rem);
}

.sgh__burst-rule {
  display: block;
  width: 52%;
  border-top: 1px dashed var(--sgh-burst-accent, #c04c2b);
  opacity: 0.5;
  margin: 2px 0;
}

.sgh__burst-sub {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.4;
  font-size: clamp(0.5625rem, calc(var(--sgh-burst-size, 190px) * 0.054), 0.8125rem);
}

.sgh__burst-code strong {
  color: var(--sgh-burst-accent, #c04c2b);
  font-weight: 700;
}

/* Linked badge (opens a Popup Manager popup via #popup-<slug>). The wrapper
   and .sgh__content are pointer-events: none, so re-enable on the card. */
.sgh__burst-card--link {
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease;
}

.sgh__burst-card--link:focus-visible {
  outline: 2px solid var(--sgh-burst-accent, #c04c2b);
  outline-offset: 4px;
}

@media (hover: hover) {
  .sgh__burst-card--link:hover {
    transform: scale(1.04);
  }
}

.sgh__burst-more {
  display: block;
  margin-top: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: clamp(0.5rem, calc(var(--sgh-burst-size, 190px) * 0.048), 0.75rem);
  color: var(--sgh-burst-accent, #c04c2b);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 767px) {
  .sgh__burst {
    width: calc(var(--sgh-burst-size, 190px) * 0.76);
    height: calc(var(--sgh-burst-size, 190px) * 0.76);
  }
  .sgh__burst--pos-top-right { top: 20px; right: 16px; }
  .sgh__burst--pos-top-left { top: 20px; left: 16px; }
  .sgh__burst--pos-bottom-right { bottom: 20px; right: 16px; }
  .sgh__burst--pos-bottom-left { bottom: 20px; left: 16px; }
  .sgh__burst--desktop-only { display: none; }
  .sgh__burst-headline {
    font-size: clamp(0.5625rem, calc(var(--sgh-burst-size, 190px) * 0.058), 0.875rem);
  }
  .sgh__burst-sub {
    font-size: clamp(0.5rem, calc(var(--sgh-burst-size, 190px) * 0.045), 0.75rem);
  }
}

.sgh__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 20, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transition: opacity 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.sgh__nav svg { display: block; }

.sgh__nav--prev { left: 16px; }
.sgh__nav--next { right: 16px; }

@media (min-width: 768px) {
  .sgh__nav--prev { left: 28px; }
  .sgh__nav--next { right: 28px; }
}

@media (hover: hover) {
  .sgh:hover .sgh__nav,
  .sgh:focus-within .sgh__nav {
    opacity: 1;
  }
  .sgh__nav:hover {
    background: rgba(16, 20, 14, 0.62);
    border-color: rgba(255, 255, 255, 0.6);
  }
}

@media (hover: none) {
  .sgh__nav { opacity: 0.85; }
}

.sgh__nav:focus-visible {
  opacity: 1;
  outline: 2px solid var(--sgh-accent, #c35330);
  outline-offset: 3px;
}

.sgh__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(16, 20, 14, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sgh__dot {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
}

.sgh__dot-inner {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background-color 220ms ease, transform 220ms ease;
}

.sgh__dot.is-active .sgh__dot-inner {
  background: #ffffff;
  transform: scale(1.35);
}

.sgh__dot:focus-visible {
  outline: 2px solid var(--sgh-accent, #c35330);
  outline-offset: 3px;
}

@media (hover: hover) {
  .sgh__dot:hover .sgh__dot-inner {
    background: rgba(255, 255, 255, 0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sgh__slide,
  .sgh__cta,
  .sgh__cta-arrow,
  .sgh__nav,
  .sgh__dot-inner,
  .sgh__burst-card--link {
    transition: none;
  }
  .sgh__cta:focus-visible .sgh__cta-arrow,
  .sgh__cta:hover .sgh__cta-arrow {
    transform: none;
  }
}

@media (max-width: 599px) {
  .sgh__cta {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

section.shopify-section.shopify-section--pj-hero-full-bleed {
  margin-top: 0;
  padding-top: 0;
}

/* ---------------------------------------------------------------------------
   Split Promo Slide (block type: promo_split)
   Color panel + product photo side by side (stacked on mobile), with a
   circular badge straddling the seam. Rides the shared crossfade rotator.
--------------------------------------------------------------------------- */
.sgh__split {
  position: absolute;
  inset: 0;
  display: flex !important;
  width: 100%;
  height: 100%;
}

.sgh__slide--split-right .sgh__split {
  flex-direction: row-reverse;
}

.sgh__panel {
  position: relative;
  flex: 0 0 var(--sgh-split-ratio, 55%);
  max-width: var(--sgh-split-ratio, 55%);
  overflow: hidden;
  background: var(--sgh-panel-color, #6e8c3c);
  display: flex !important;
  align-items: center;
  box-sizing: border-box;
}

.sgh__panel-texture {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  opacity: var(--sgh-panel-texture-opacity, 1);
  pointer-events: none;
  z-index: 0;
}

.sgh__panel-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 64px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.sgh__panel-eyebrow {
  margin: 0 0 clamp(10px, 1.5vw, 18px) 0;
  font-family: var(--sgh-body-font, var(--font-body, 'Rubik', system-ui, sans-serif));
  font-weight: var(--sgh-eyebrow-weight, 600);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: calc(clamp(0.8rem, 1.5vw, 1.05rem) * var(--sgh-eyebrow-scale, 1));
  color: var(--sgh-panel-eyebrow, #2e4a2e);
  text-align: center;
}

.sgh__lockup {
  margin: 0;
  font-family: var(--sgh-heading-font, var(--font-heading, 'EB Garamond', serif));
  font-weight: var(--sgh-display-weight, 600);
  color: var(--sgh-panel-display, #ffffff);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.4em;
  align-items: center;
  line-height: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.sgh__lockup-prefix {
  grid-row: 1;
  grid-column: 1;
  max-width: 2.4em;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
  font-size: calc(clamp(1.05rem, 1.9vw, 1.7rem) * var(--sgh-prefix-scale, 1));
}

.sgh__value {
  grid-row: 1;
  grid-column: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  font-size: calc(clamp(3.5rem, 9vw, 7rem) * var(--sgh-value-scale, 1));
  line-height: 0.9;
  white-space: nowrap;
}

.sgh__value-accent {
  font-style: italic;
}

.sgh__subhead {
  grid-row: 2;
  grid-column: 2;
  margin-top: 0.15em;
  letter-spacing: 0.03em;
  font-size: calc(clamp(1.5rem, 3.6vw, 2.6rem) * var(--sgh-subhead-scale, 1));
  line-height: 1;
}

.sgh__fineprint {
  margin: clamp(14px, 2vw, 22px) 0 0 0;
  font-family: var(--sgh-heading-font, var(--font-heading, 'EB Garamond', serif));
  font-style: italic;
  font-weight: 400;
  font-size: calc(clamp(1.15rem, 2vw, 1.5rem) * var(--sgh-fineprint-scale, 1));
  color: var(--sgh-panel-fineprint, #24331c);
  text-align: center;
}

.sgh__panel .sgh__cta-row {
  margin-top: clamp(20px, 2.6vw, 32px);
  align-items: flex-start;
}

.sgh__panel-cta {
  align-self: flex-start;
  font-family: var(--sgh-body-font, var(--font-body, 'Rubik', system-ui, sans-serif));
  background: var(--sgh-panel-cta-bg, #22402e);
  color: var(--sgh-panel-cta-fg, #ffffff);
  border-color: var(--sgh-panel-cta-bg, #22402e);
  transition: filter 200ms ease;
}

.sgh__panel-cta:focus-visible {
  outline: 2px solid var(--sgh-panel-cta-bg, #22402e);
  outline-offset: 3px;
}

@media (hover: hover) {
  .sgh__panel-cta:hover {
    filter: brightness(0.92);
  }
}

.sgh__photo {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

/* Seam badge — centered on the vertical seam on desktop. */
.sgh__seam-badge {
  position: absolute;
  z-index: 5;
  top: var(--sgh-badge-top, 58%);
  left: var(--sgh-split-ratio, 55%);
  transform: translate(-50%, -50%);
  width: var(--sgh-badge-size, 150px);
  height: var(--sgh-badge-size, 150px);
  filter: drop-shadow(0 8px 20px rgba(16, 20, 14, 0.28));
  pointer-events: none;
}

.sgh__slide--split-right .sgh__seam-badge {
  left: calc(100% - var(--sgh-split-ratio, 55%));
}

.sgh__seam-badge-inner {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--sgh-badge-bg, #c4692c);
  color: var(--sgh-badge-fg, #ffffff);
  text-align: center;
  font-family: var(--sgh-body-font, var(--font-body, 'Rubik', system-ui, sans-serif));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  font-size: clamp(0.9rem, calc(var(--sgh-badge-size, 150px) * 0.16), 1.5rem);
}

.sgh__seam-badge-line {
  display: block;
}

@media (max-width: 767px) {
  .sgh__split,
  .sgh__slide--split-right .sgh__split {
    flex-direction: column;
  }
  .sgh__panel,
  .sgh__slide--split-right .sgh__panel {
    flex: 1 1 55%;
    max-width: none;
  }
  .sgh__photo {
    flex: 1 1 45%;
  }
  /* Center the lockup on mobile so it balances the centered eyebrow / fine
     print (desktop keeps it left-aligned against the value). */
  .sgh__lockup {
    grid-template-columns: auto auto;
    justify-content: center;
  }
  /* Mobile: badge sits on the horizontal seam; horizontal placement is a
     per-slide setting. !important beats the desktop split-right selector,
     which has higher specificity. */
  .sgh__seam-badge {
    top: 55% !important;
  }
  .sgh__seam-badge--m-left {
    left: 10% !important;
    right: auto !important;
    transform: translate(0, -50%) !important;
  }
  .sgh__seam-badge--m-center {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
  }
  .sgh__seam-badge--m-right {
    left: auto !important;
    right: 10% !important;
    transform: translate(0, -50%) !important;
  }
}
/* END_SECTION:pj_herofullbleed */

/* START_SECTION:pj_herowithtilegrid (INDEX:16) */
.hero-sgg {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #f0ede8;
  overflow: hidden;
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  height: 100vh;
  min-height: var(--hero-sgg-min-height, 600px);
  max-height: var(--hero-sgg-max-height, 900px);
}

@media (min-width: 768px) {
  .hero-sgg {
    flex-direction: row;
  }
}

.hero-sgg__hero {
  position: relative;
  width: 100%;
  height: 50%;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 768px) {
  .hero-sgg__hero {
    width: var(--hero-sgg-hero-width, 62%);
    height: 100%;
  }
}

.hero-sgg__hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1000ms ease;
}

@media (hover: hover) {
  .hero-sgg__hero:hover .hero-sgg__hero-image {
    transform: scale(1.05);
  }
}
.hero-sgg__hero:focus-within .hero-sgg__hero-image {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .hero-sgg__hero-image {
    transition: none;
  }
  .hero-sgg__hero:hover .hero-sgg__hero-image,
  .hero-sgg__hero:focus-within .hero-sgg__hero-image {
    transform: none;
  }
}

.hero-sgg__hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 80%);
  pointer-events: none;
}

.hero-sgg__hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: var(--hero-sgg-pattern-opacity, 1);
  background-repeat: repeat;
  background-size: 160px 160px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='none' stroke='rgba(255,255,255,0.18)' stroke-width='0.7' stroke-linecap='round'><path d='M40 130 Q38 110 42 90'/><path d='M42 90 Q30 82 22 70'/><path d='M42 90 Q32 86 28 76'/><path d='M42 90 Q34 90 32 82'/><path d='M42 90 Q44 84 46 90'/><path d='M42 90 Q50 86 52 78'/><path d='M42 90 Q52 90 56 84'/><path d='M42 90 Q54 94 60 90'/><path d='M42 90 Q46 98 44 106'/><path d='M44 106 Q36 100 30 96'/><path d='M44 106 Q40 108 36 106'/><path d='M44 106 Q42 112 40 118'/><path d='M44 106 Q50 110 54 106'/><path d='M44 106 Q52 104 56 98'/><path d='M120 20 Q130 30 126 44'/><path d='M126 44 Q114 40 108 30'/><path d='M126 44 Q118 42 116 36'/><path d='M126 44 Q136 48 140 42'/><path d='M126 44 Q132 52 128 62'/><path d='M128 62 Q118 56 116 48'/><path d='M128 62 Q136 62 140 58'/><path d='M128 62 Q130 72 124 80'/><path d='M80 160 Q78 140 82 120 Q80 100 84 80'/><path d='M82 120 Q70 114 64 104'/><path d='M82 120 Q74 118 72 112'/><path d='M82 120 Q92 116 96 108'/><path d='M82 120 Q90 120 94 114'/><path d='M84 80 Q74 74 68 64'/><path d='M84 80 Q76 78 74 72'/><path d='M84 80 Q94 76 98 68'/><path d='M84 80 Q92 80 96 74'/><path d='M10 50 Q14 44 20 48 Q16 54 10 50Z'/><path d='M10 50 Q12 56 18 54'/><path d='M140 100 Q144 94 150 98 Q146 104 140 100Z'/><path d='M140 100 Q142 106 148 104'/><path d='M60 10 Q64 4 70 8 Q66 14 60 10Z'/><path d='M60 10 Q62 16 68 14'/></g></svg>");
}

.hero-sgg__hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: var(--hero-sgg-text, #ffffff);
  max-width: 640px;
}

@media (min-width: 768px) {
  .hero-sgg__hero-content {
    padding: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-sgg__hero-content {
    padding-inline: 96px;
  }
}

.hero-sgg__eyebrow {
  font-size: var(--hero-sgg-eyebrow-size-mobile, 12px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .hero-sgg__eyebrow {
    font-size: var(--hero-sgg-eyebrow-size-desktop, 13px);
  }
}

.hero-sgg__heading {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: var(--hero-sgg-heading-size-mobile, 36px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 18ch;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .hero-sgg__heading {
    font-size: var(--hero-sgg-heading-size-desktop, 64px);
  }
}

.hero-sgg__hero-body {
  font-size: var(--hero-sgg-body-size-mobile, 16px);
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 32px;
  max-width: 38ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.hero-sgg__hero-body p { margin: 0 0 0.6em; }
.hero-sgg__hero-body p:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .hero-sgg__hero-body {
    font-size: var(--hero-sgg-body-size-desktop, 18px);
  }
}

.hero-sgg__cta {
  display: inline-block;
  align-self: flex-start;
  font-family: inherit;
  font-size: var(--hero-sgg-hero-cta-font-size-mobile, 14px);
  letter-spacing: var(--hero-sgg-hero-cta-letter-spacing, 0em);
  font-weight: 500;
  color: var(--hero-sgg-text, #ffffff);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.hero-sgg__cta--underline {
  border-bottom: var(--hero-sgg-hero-cta-border-width, 1px) solid currentColor;
  padding: 0 0 var(--hero-sgg-hero-cta-pad-y, 4px);
}

@media (min-width: 768px) {
  .hero-sgg__cta {
    font-size: var(--hero-sgg-hero-cta-font-size, 16px);
  }
}

@media (hover: hover) {
  .hero-sgg__cta--underline:hover {
    color: color-mix(in srgb, var(--hero-sgg-text, #ffffff) 70%, transparent);
    border-color: color-mix(in srgb, var(--hero-sgg-text, #ffffff) 70%, transparent);
  }
}
.hero-sgg__cta--underline:focus-visible {
  color: color-mix(in srgb, var(--hero-sgg-text, #ffffff) 70%, transparent);
  border-color: color-mix(in srgb, var(--hero-sgg-text, #ffffff) 70%, transparent);
}

.hero-sgg__cta--outlined {
  border: var(--hero-sgg-hero-cta-border-width, 1px) solid currentColor;
  border-radius: var(--hero-sgg-hero-cta-radius, 0px);
  padding: var(--hero-sgg-hero-cta-pad-y, 12px) var(--hero-sgg-hero-cta-pad-x, 28px);
  text-transform: uppercase;
}

@media (hover: hover) {
  .hero-sgg__cta--outlined:hover {
    background: var(--hero-sgg-hero-cta-bg-hover, #ffffff);
    color: var(--hero-sgg-hero-cta-bg, #2a332a);
    border-color: var(--hero-sgg-hero-cta-bg-hover, #ffffff);
  }
}
.hero-sgg__cta--outlined:focus-visible {
  background: var(--hero-sgg-hero-cta-bg-hover, #ffffff);
  color: var(--hero-sgg-hero-cta-bg, #2a332a);
  border-color: var(--hero-sgg-hero-cta-bg-hover, #ffffff);
}

.hero-sgg__cta--filled {
  background: var(--hero-sgg-hero-cta-bg, #ffffff);
  color: var(--hero-sgg-hero-cta-fg, #2a332a);
  border-radius: var(--hero-sgg-hero-cta-radius, 0px);
  padding: var(--hero-sgg-hero-cta-pad-y, 12px) var(--hero-sgg-hero-cta-pad-x, 28px);
  text-transform: uppercase;
  text-shadow: none;
}

@media (hover: hover) {
  .hero-sgg__cta--filled:hover {
    background: var(--hero-sgg-hero-cta-bg-hover, #2a332a);
    color: var(--hero-sgg-hero-cta-fg-hover, #ffffff);
  }
}
.hero-sgg__cta--filled:focus-visible {
  background: var(--hero-sgg-hero-cta-bg-hover, #2a332a);
  color: var(--hero-sgg-hero-cta-fg-hover, #ffffff);
}

.hero-sgg__cta:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.hero-sgg__grid {
  width: 100%;
  height: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .hero-sgg__grid {
    width: calc(100% - var(--hero-sgg-hero-width, 62%));
    height: 100%;
  }
}

.hero-sgg__tile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-sgg__tile-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-sgg__tile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
  display: block;
}

@media (hover: hover) {
  .hero-sgg__tile:hover .hero-sgg__tile-image {
    transform: scale(1.1);
  }
}
.hero-sgg__tile:focus-within .hero-sgg__tile-image {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-sgg__tile-image {
    transition: none;
  }
  .hero-sgg__tile:hover .hero-sgg__tile-image,
  .hero-sgg__tile:focus-within .hero-sgg__tile-image {
    transform: none;
  }
}

.hero-sgg__tile-scrim {
  position: absolute;
  inset: 0;
  background: var(--hero-sgg-overlay-strong, #000000);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

@media (hover: hover) {
  .hero-sgg__tile:hover .hero-sgg__tile-scrim {
    opacity: 0.4;
  }
}
.hero-sgg__tile:focus-within .hero-sgg__tile-scrim {
  opacity: 0.4;
}

.hero-sgg__tile-form,
.hero-sgg__tile-cta--standalone {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 2;
}

@media (hover: hover) {
  .hero-sgg__tile:hover .hero-sgg__tile-form,
  .hero-sgg__tile:hover .hero-sgg__tile-cta--standalone {
    opacity: 1;
    pointer-events: auto;
  }
}
.hero-sgg__tile:focus-within .hero-sgg__tile-form,
.hero-sgg__tile:focus-within .hero-sgg__tile-cta--standalone {
  opacity: 1;
  pointer-events: auto;
}

.hero-sgg__tile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--hero-sgg-tile-cta-font-size, 12px);
  letter-spacing: var(--hero-sgg-tile-cta-letter-spacing, 0.15em);
  text-transform: uppercase;
  font-weight: 500;
  padding: var(--hero-sgg-tile-cta-pad-y, 10px) var(--hero-sgg-tile-cta-pad-x, 20px);
  border-radius: var(--hero-sgg-tile-cta-radius, 0px);
  text-decoration: none;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
  pointer-events: auto;
}

.hero-sgg__tile-cta--filled {
  background: var(--hero-sgg-quick-shop-bg, #ffffff);
  color: var(--hero-sgg-quick-shop-fg, #2a332a);
}

@media (hover: hover) {
  .hero-sgg__tile-cta--filled:hover {
    background: var(--hero-sgg-quick-shop-bg-hover, #2a332a);
    color: var(--hero-sgg-quick-shop-fg-hover, #ffffff);
  }
}
.hero-sgg__tile-cta--filled:focus-visible {
  background: var(--hero-sgg-quick-shop-bg-hover, #2a332a);
  color: var(--hero-sgg-quick-shop-fg-hover, #ffffff);
}

.hero-sgg__tile-cta--outlined {
  background: transparent;
  color: var(--hero-sgg-quick-shop-bg, #ffffff);
  border: var(--hero-sgg-tile-cta-border-width, 1px) solid var(--hero-sgg-quick-shop-bg, #ffffff);
}

@media (hover: hover) {
  .hero-sgg__tile-cta--outlined:hover {
    background: var(--hero-sgg-quick-shop-bg, #ffffff);
    color: var(--hero-sgg-quick-shop-fg, #2a332a);
    border-color: var(--hero-sgg-quick-shop-bg, #ffffff);
  }
}
.hero-sgg__tile-cta--outlined:focus-visible {
  background: var(--hero-sgg-quick-shop-bg, #ffffff);
  color: var(--hero-sgg-quick-shop-fg, #2a332a);
  border-color: var(--hero-sgg-quick-shop-bg, #ffffff);
}

.hero-sgg__tile-cta--minimal {
  background: transparent;
  color: var(--hero-sgg-quick-shop-bg, #ffffff);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  padding-inline: 4px;
  padding-block: 4px;
  border-bottom: var(--hero-sgg-tile-cta-border-width, 1px) solid currentColor;
}

@media (hover: hover) {
  .hero-sgg__tile-cta--minimal:hover {
    color: color-mix(in srgb, var(--hero-sgg-quick-shop-bg, #ffffff) 70%, transparent);
    border-color: color-mix(in srgb, var(--hero-sgg-quick-shop-bg, #ffffff) 70%, transparent);
  }
}
.hero-sgg__tile-cta--minimal:focus-visible {
  color: color-mix(in srgb, var(--hero-sgg-quick-shop-bg, #ffffff) 70%, transparent);
  border-color: color-mix(in srgb, var(--hero-sgg-quick-shop-bg, #ffffff) 70%, transparent);
}

.hero-sgg__tile-cta--standalone {
  align-self: center;
  justify-self: center;
  inset: auto;
  position: absolute;
  width: auto;
  height: auto;
  pointer-events: auto;
  opacity: 0;
}

@media (hover: hover) {
  .hero-sgg__tile:hover .hero-sgg__tile-cta--standalone {
    opacity: 1;
  }
}
.hero-sgg__tile:focus-within .hero-sgg__tile-cta--standalone {
  opacity: 1;
}

.hero-sgg__tile-cta:focus-visible {
  outline: 2px solid var(--hero-sgg-quick-shop-bg, #ffffff);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-sgg__tile-scrim,
  .hero-sgg__tile-form,
  .hero-sgg__tile-cta--standalone {
    transition: none;
  }
}

@media (pointer: coarse) {
  .hero-sgg__tile-form,
  .hero-sgg__tile-cta--standalone {
    opacity: 1;
    pointer-events: auto;
  }
  .hero-sgg__tile-scrim {
    opacity: 0.25;
  }
}
/* END_SECTION:pj_herowithtilegrid */

/* START_SECTION:pj_introduction (INDEX:17) */
.pj-intro {
  background: var(--pj-intro-bg, #f5f1ec);
  color: var(--pj-intro-text, #4a4a4a);
  padding-block: var(--pj-intro-padding-y-mobile, 80px);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}

@media (min-width: 768px) {
  .pj-intro {
    padding-block: var(--pj-intro-padding-y-desktop, 112px);
  }
}

.pj-intro__inner {
  max-width: var(--pj-intro-max-width, 700px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 32px);
  text-align: center;
}

.pj-intro__diamond {
  display: block;
  width: 8px;
  height: 8px;
  margin-inline: auto;
  background: var(--pj-intro-accent, #c1694f);
  transform: rotate(45deg);
}

.pj-intro__diamond--top {
  margin-bottom: 16px;
}

.pj-intro__diamond--bottom {
  margin-top: 32px;
}

.pj-intro__eyebrow {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: var(--pj-intro-eyebrow-size-mobile, 10px);
  font-weight: 500;
  letter-spacing: var(--pj-intro-eyebrow-tracking, 0.35em);
  text-transform: uppercase;
  color: var(--pj-intro-eyebrow, #717171);
  margin: 0 0 24px 0;
}

@media (min-width: 768px) {
  .pj-intro__eyebrow {
    font-size: var(--pj-intro-eyebrow-size-desktop, 10px);
  }
}

.pj-intro__eyebrow-accent {
  color: var(--pj-intro-accent, #c1694f);
}

.pj-intro__headline {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 400;
  font-size: var(--pj-intro-headline-size-mobile, 28px);
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: var(--pj-intro-text, #4a4a4a);
  margin: 0 0 24px 0;
}

@media (min-width: 768px) {
  .pj-intro__headline {
    font-size: var(--pj-intro-headline-size-desktop, 40px);
  }
}

.pj-intro__body {
  font-size: var(--pj-intro-body-size-mobile, 18px);
  line-height: 1.8;
  margin: 0;
  color: inherit;
}

@media (min-width: 768px) {
  .pj-intro__body {
    font-size: var(--pj-intro-body-size-desktop, 20px);
  }
}

.pj-intro__body--serif {
  font-family: var(--font-heading, 'EB Garamond', serif);
}

.pj-intro__body--sans {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}

.pj-intro__body--italic {
  font-style: italic;
}

.pj-intro__body p {
  margin: 0 0 1em 0;
}

.pj-intro__body p:last-child {
  margin: 0;
}

section.shopify-section.shopify-section--pj-introduction {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_introduction */

/* START_SECTION:pj_limitedtimehero (INDEX:18) */
.pj-lth {
  display: block;
  width: 100%;
  background-color: var(--pj-lth-bg, #F5F3EE);
  border-top: var(--pj-lth-border-width, 8px) solid var(--pj-lth-border, #3c4b3c);
  border-bottom: var(--pj-lth-border-width, 8px) solid var(--pj-lth-border, #3c4b3c);
  position: relative;
  min-height: var(--pj-lth-min-height, 500px);
  font-family: var(--font-body, 'Rubik', sans-serif);
}

.pj-lth__container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  padding-block: var(--pj-lth-padding-y-mobile, 40px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pj-lth__container {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    min-height: var(--pj-lth-min-height, 500px);
    padding-block: var(--pj-lth-padding-y-desktop, 64px);
  }
}

.pj-lth__col {
  flex: 1 1 50%;
  min-width: 0;
  position: relative;
}

.pj-lth__col--text {
  z-index: 2;
}

.pj-lth__col--image {
  align-self: stretch;
  min-height: 280px;
}

@media (min-width: 768px) {
  .pj-lth__col--image {
    align-self: center;
    min-height: 0;
  }
}

/*
 * Per-element font family — switched via data-font attribute set from
 * each element's `*_font` select setting (values: "body" or "heading").
 * Generic selector so it applies to eyebrow, headline, offer, subheading
 * uniformly without repeating the rule four times.
 */
.pj-lth [data-font="body"]    { font-family: var(--font-body, 'Rubik', sans-serif); }
.pj-lth [data-font="heading"] { font-family: var(--font-heading, 'EB Garamond', serif); }

.pj-lth__eyebrow {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--pj-lth-eyebrow-size-mobile, 12px);
  font-weight: var(--pj-lth-eyebrow-weight, 600);
  letter-spacing: var(--pj-lth-eyebrow-tracking, 0.18em);
  text-transform: uppercase;
  color: var(--pj-lth-eyebrow, #6b6b6b);
  margin: 0 0 0.25rem;
}

.pj-lth__eyebrow--pill {
  display: inline-block;
  background-color: var(--pj-lth-eyebrow-pill-bg, #1e2a21);
  padding: var(--pj-lth-eyebrow-pill-pady, 8px) var(--pj-lth-eyebrow-pill-padx, 18px);
  border-radius: var(--pj-lth-eyebrow-pill-radius, 50px);
  margin-bottom: 0.75rem;
}

.pj-lth__headline {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: var(--pj-lth-headline-size-mobile, 24px);
  font-weight: var(--pj-lth-headline-weight, 700);
  letter-spacing: var(--pj-lth-headline-tracking, 0.05em);
  text-transform: var(--pj-lth-headline-transform, uppercase);
  line-height: 1.05;
  color: var(--pj-lth-headline, #2a3c2a);
  margin: 0 0 0.75rem;
}

.pj-lth__offer {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--pj-lth-offer-size-mobile, 56px);
  font-weight: var(--pj-lth-offer-weight, 800);
  line-height: 0.9;
  letter-spacing: var(--pj-lth-offer-tracking, -0.04em);
  color: var(--pj-lth-offer, #8c8270);
  margin: 0.25rem 0 0.5rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.pj-lth__subheading {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: var(--pj-lth-subheading-size-mobile, 20px);
  font-weight: var(--pj-lth-subheading-weight, 500);
  letter-spacing: var(--pj-lth-subheading-tracking, 0);
  color: var(--pj-lth-sub, #5a5a5a);
  margin: 0 0 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .pj-lth__eyebrow    { font-size: var(--pj-lth-eyebrow-size-desktop, 14px); }
  .pj-lth__headline   { font-size: var(--pj-lth-headline-size-desktop, 36px); }
  .pj-lth__offer      { font-size: var(--pj-lth-offer-size-desktop, 128px); }
  .pj-lth__subheading { font-size: var(--pj-lth-subheading-size-desktop, 28px); }
}

/*
 * Center-all-text-on-mobile toggle. Centers inline content (text in headings/p),
 * inline-block elements (eyebrow pill), and inline-flex elements (the CTA anchor)
 * because text-align centers any in-flow inline-axis content.
 */
@media (max-width: 767px) {
  .pj-lth[data-center-mobile="true"] .pj-lth__col--text {
    text-align: center;
  }
}

.pj-lth__body {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: clamp(0.9rem, 0.4vw + 0.8rem, 1rem);
  line-height: 1.55;
  color: var(--pj-lth-body, #4a4a4a);
  max-width: 36rem;
  margin: 0 0 1.25rem;
}

.pj-lth__body p {
  margin: 0 0 0.75rem;
}
.pj-lth__body p:last-child { margin-bottom: 0; }

.pj-lth__urgency {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.125rem);
  font-weight: 600;
  color: var(--pj-lth-urgency, #1a1a1a);
  margin: 0 0 1.5rem;
}

.pj-lth__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pj-lth-cta-bg, #1e2a21);
  color: var(--pj-lth-cta-fg, #ffffff);
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-weight: var(--pj-lth-cta-weight, 700);
  font-size: 0.95rem;
  letter-spacing: var(--pj-lth-cta-tracking, 0.18em);
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.25s ease, transform 0.15s ease;
}

@media (hover: hover) {
  .pj-lth__cta:hover {
    background-color: var(--pj-lth-cta-bg-hover, #2a3c2a);
  }
}

.pj-lth__cta:active {
  transform: translateY(1px);
}

.pj-lth__cta:focus-visible {
  outline: 2px solid var(--pj-lth-cta-bg, #1e2a21);
  outline-offset: 3px;
}

.pj-lth__cluster {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .pj-lth__cluster {
    min-height: 420px;
    gap: 1rem;
  }
}

/*
 * Count-aware cluster layout — when there are fewer saw blocks, give each
 * one more room and a larger max image height so the cluster doesn't feel
 * sparse. Defaults match the 4-saw layout; explicit rules override for 1/2/3.
 */
.pj-lth__cluster[data-count="1"] {
  justify-content: center;
  gap: 0;
}
.pj-lth__cluster[data-count="1"] .pj-lth__saw {
  align-self: center;
  width: 100%;
}
.pj-lth__cluster[data-count="2"] {
  gap: 1.5rem;
  justify-content: space-around;
}
.pj-lth__cluster[data-count="3"] {
  gap: 1.25rem;
  justify-content: space-around;
}

/* Image sizing per count — bigger for fewer saws */
@media (max-width: 767px) {
  .pj-lth__cluster[data-count="1"] .pj-lth__saw-img { max-height: 180px; }
  .pj-lth__cluster[data-count="2"] .pj-lth__saw-img { max-height: 110px; }
  .pj-lth__cluster[data-count="3"] .pj-lth__saw-img { max-height: 90px; }
}
@media (min-width: 768px) {
  .pj-lth__cluster[data-count="1"] .pj-lth__saw-img { max-height: 240px; }
  .pj-lth__cluster[data-count="2"] .pj-lth__saw-img { max-height: 150px; }
  .pj-lth__cluster[data-count="3"] .pj-lth__saw-img { max-height: 120px; }
}
@media (min-width: 1024px) {
  .pj-lth__cluster[data-count="1"] .pj-lth__saw-img { max-height: 280px; }
  .pj-lth__cluster[data-count="2"] .pj-lth__saw-img { max-height: 160px; }
  .pj-lth__cluster[data-count="3"] .pj-lth__saw-img { max-height: 130px; }
}

.pj-lth__saw {
  position: relative;
  display: flex;
  align-items: center;
  width: var(--pj-lth-saw-width, 80%);
  transform: translate(var(--pj-lth-saw-offset-x, 0%), var(--pj-lth-saw-offset-y, 0%));
  transform-origin: center;
  align-self: flex-end;
}

/*
 * Saw label positioning — driven by data-label-desktop / data-label-mobile
 * data attributes set from the block's `label_position_desktop` / `_mobile`
 * select fields. Each rule sets the saw's flex direction + alignment so
 * "outside-*" positions sit in flow; "overlay-*" positions make the label
 * absolutely positioned over the image.
 */

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .pj-lth__saw[data-label-mobile="outside-left"]   { flex-direction: row-reverse;    align-self: flex-start; align-items: center; }
  .pj-lth__saw[data-label-mobile="outside-right"]  { flex-direction: row;            align-self: flex-end;   align-items: center; }
  .pj-lth__saw[data-label-mobile="outside-top"]    { flex-direction: column-reverse; align-items: center;    align-self: center; }
  .pj-lth__saw[data-label-mobile="outside-bottom"] { flex-direction: column;         align-items: center;    align-self: center; }
  .pj-lth__saw[data-label-mobile^="overlay-"]      { flex-direction: row;            align-self: flex-end;   align-items: center; }

  .pj-lth__saw[data-label-mobile^="overlay-"] .pj-lth__saw-label {
    position: absolute;
    margin: 0;
    z-index: 2;
  }
  .pj-lth__saw[data-label-mobile="overlay-top-left"]     .pj-lth__saw-label { top: 4px;  left: 4px; }
  .pj-lth__saw[data-label-mobile="overlay-top-right"]    .pj-lth__saw-label { top: 4px;  right: 4px; }
  .pj-lth__saw[data-label-mobile="overlay-bottom-left"]  .pj-lth__saw-label { bottom: 4px; left: 4px; }
  .pj-lth__saw[data-label-mobile="overlay-bottom-right"] .pj-lth__saw-label { bottom: 4px; right: 4px; }
  .pj-lth__saw[data-label-mobile="overlay-center"]       .pj-lth__saw-label {
    top: 50%; left: 50%;
    transform: translate(var(--pj-lth-label-nudge-x-mobile, 0px), var(--pj-lth-label-nudge-y-mobile, 0px)) translate(-50%, -50%) rotate(var(--pj-lth-label-rotation-mobile, 0deg));
  }

  .pj-lth__saw[data-label-mobile="outside-top"]    .pj-lth__saw-label,
  .pj-lth__saw[data-label-mobile="outside-bottom"] .pj-lth__saw-label {
    margin-inline: 0;
    margin-block: 0.35rem;
  }
}

/* Desktop (≥ 768px) */
@media (min-width: 768px) {
  .pj-lth__saw[data-label-desktop="outside-left"]   { flex-direction: row-reverse;    align-self: flex-start; align-items: center; }
  .pj-lth__saw[data-label-desktop="outside-right"]  { flex-direction: row;            align-self: flex-end;   align-items: center; }
  .pj-lth__saw[data-label-desktop="outside-top"]    { flex-direction: column-reverse; align-items: center;    align-self: center; }
  .pj-lth__saw[data-label-desktop="outside-bottom"] { flex-direction: column;         align-items: center;    align-self: center; }
  .pj-lth__saw[data-label-desktop^="overlay-"]      { flex-direction: row;            align-self: flex-end;   align-items: center; }

  .pj-lth__saw[data-label-desktop^="overlay-"] .pj-lth__saw-label {
    position: absolute;
    margin: 0;
    z-index: 2;
  }
  .pj-lth__saw[data-label-desktop="overlay-top-left"]     .pj-lth__saw-label { top: 4px;  left: 4px; }
  .pj-lth__saw[data-label-desktop="overlay-top-right"]    .pj-lth__saw-label { top: 4px;  right: 4px; }
  .pj-lth__saw[data-label-desktop="overlay-bottom-left"]  .pj-lth__saw-label { bottom: 4px; left: 4px; }
  .pj-lth__saw[data-label-desktop="overlay-bottom-right"] .pj-lth__saw-label { bottom: 4px; right: 4px; }
  .pj-lth__saw[data-label-desktop="overlay-center"]       .pj-lth__saw-label {
    top: 50%; left: 50%;
    transform: translate(var(--pj-lth-label-nudge-x-desktop, 0px), var(--pj-lth-label-nudge-y-desktop, 0px)) translate(-50%, -50%) rotate(var(--pj-lth-label-rotation-desktop, 0deg));
  }

  .pj-lth__saw[data-label-desktop="outside-top"]    .pj-lth__saw-label,
  .pj-lth__saw[data-label-desktop="outside-bottom"] .pj-lth__saw-label {
    margin-inline: 0;
    margin-block: 0.35rem;
  }
}

.pj-lth__saw-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
  /*
   * Image rotates independently of the saw container so labels can be
   * rotated separately (or not at all). Container handles offset_x / offset_y.
   */
  transform: rotate(var(--pj-lth-saw-rotation, 0deg));
  transform-origin: center;
}

@media (min-width: 1024px) {
  .pj-lth__saw-img {
    max-height: 100px;
  }
}

.pj-lth__saw-placeholder {
  width: 100%;
  aspect-ratio: 8 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
}

.pj-lth__placeholder-svg { width: 100%; height: 100%; opacity: 0.6; }

.pj-lth__saw-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-style: italic;
  font-size: clamp(0.85rem, 0.5vw + 0.7rem, 1rem);
  color: var(--pj-lth-label-fg, #4a4a4a);
  background-color: var(--pj-lth-label-bg, rgba(245, 243, 238, 0.85));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: var(--pj-lth-label-pady-mobile, 4px) var(--pj-lth-label-padx-mobile, 8px);
  border-radius: 2px;
  white-space: nowrap;
  margin-inline: 0.5rem;
  flex-shrink: 0;
  pointer-events: none;
  /*
   * Default mobile transform — nudge (px) + rotation (deg), composing with
   * any position-specific translates (e.g. translate(-50%, -50%) for center
   * overlays). When the variables aren't set, this is an identity transform.
   */
  transform: translate(var(--pj-lth-label-nudge-x-mobile, 0px), var(--pj-lth-label-nudge-y-mobile, 0px)) rotate(var(--pj-lth-label-rotation-mobile, 0deg));
  transform-origin: center;
}

@media (min-width: 768px) {
  .pj-lth__saw-label {
    padding: var(--pj-lth-label-pady-desktop, 4px) var(--pj-lth-label-padx-desktop, 8px);
    transform: translate(var(--pj-lth-label-nudge-x-desktop, 0px), var(--pj-lth-label-nudge-y-desktop, 0px)) rotate(var(--pj-lth-label-rotation-desktop, 0deg));
  }
}

/*
 * Secondary/tertiary labels — always overlay (absolute) over the image,
 * with their own per-breakpoint position attribute and padding vars.
 * The primary label's positioning is driven by the saw's data-label-*
 * attributes; these additional labels carry their own data-pos-* attrs
 * so each can be placed independently.
 */
.pj-lth__saw-label--extra {
  position: absolute;
  margin: 0;
  z-index: 3;
  padding: var(--extra-pady-m, 4px) var(--extra-padx-m, 8px);
}

@media (min-width: 768px) {
  .pj-lth__saw-label--extra {
    padding: var(--extra-pady-d, 4px) var(--extra-padx-d, 8px);
  }
}

@media (max-width: 767px) {
  .pj-lth__saw-label--extra[data-pos-mobile="overlay-top-left"]     { top: 4px; left: 4px; }
  .pj-lth__saw-label--extra[data-pos-mobile="overlay-top-right"]    { top: 4px; right: 4px; }
  .pj-lth__saw-label--extra[data-pos-mobile="overlay-bottom-left"]  { bottom: 4px; left: 4px; }
  .pj-lth__saw-label--extra[data-pos-mobile="overlay-bottom-right"] { bottom: 4px; right: 4px; }
  .pj-lth__saw-label--extra[data-pos-mobile="overlay-center"] {
    top: 50%; left: 50%;
    transform: translate(var(--pj-lth-label-nudge-x-mobile, 0px), var(--pj-lth-label-nudge-y-mobile, 0px)) translate(-50%, -50%) rotate(var(--pj-lth-label-rotation-mobile, 0deg));
  }
}

@media (min-width: 768px) {
  .pj-lth__saw-label--extra[data-pos-desktop="overlay-top-left"]     { top: 4px; left: 4px; }
  .pj-lth__saw-label--extra[data-pos-desktop="overlay-top-right"]    { top: 4px; right: 4px; }
  .pj-lth__saw-label--extra[data-pos-desktop="overlay-bottom-left"]  { bottom: 4px; left: 4px; }
  .pj-lth__saw-label--extra[data-pos-desktop="overlay-bottom-right"] { bottom: 4px; right: 4px; }
  .pj-lth__saw-label--extra[data-pos-desktop="overlay-center"] {
    top: 50%; left: 50%;
    transform: translate(var(--pj-lth-label-nudge-x-desktop, 0px), var(--pj-lth-label-nudge-y-desktop, 0px)) translate(-50%, -50%) rotate(var(--pj-lth-label-rotation-desktop, 0deg));
  }
}

.pj-lth__saw-arrow {
  font-size: 1em;
  line-height: 1;
}

.pj-lth__placeholder-msg {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 0.875rem;
  color: var(--pj-lth-body, #4a4a4a);
  opacity: 0.6;
  text-align: center;
  padding: 2rem 1rem;
  border: 1px dashed currentColor;
  border-radius: 4px;
}

.pj-lth__badge {
  position: absolute;
  z-index: 3;
  width: clamp(8rem, 14vw, 11rem);
  height: clamp(8rem, 14vw, 11rem);
  border-radius: 50%;
  background-color: var(--pj-lth-badge-bg, #1e2a21);
  color: var(--pj-lth-badge-fg, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  border: var(--pj-lth-badge-border-width, 4px) solid var(--pj-lth-badge-border, var(--pj-lth-bg, #F5F3EE));
  padding: 0.75rem;
  line-height: 1.05;
  /*
   * Per-breakpoint nudge translate composed from the merchant's offset_x/y
   * settings. Mobile default applies at the base; desktop overrides under
   * the min-width media query below. Each position rule prepends
   * var(--pj-lth-badge-offset) to its transform.
   */
  --pj-lth-badge-offset: translate(var(--pj-lth-badge-offset-x-mobile, 0%), var(--pj-lth-badge-offset-y-mobile, 0%));
  /* Default position (middle-left) so missing data-position is still sensible */
  top: 50%;
  left: 5%;
  transform: var(--pj-lth-badge-offset) translateY(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
}

@media (min-width: 768px) {
  .pj-lth__badge {
    --pj-lth-badge-offset: translate(var(--pj-lth-badge-offset-x-desktop, 0%), var(--pj-lth-badge-offset-y-desktop, 0%));
  }
}

/*
 * Badge position — per-breakpoint via data-position-desktop / data-position-mobile.
 * Each rule sets top/right/bottom/left + the right transform composition for the
 * rotation plus any centering translates.
 */

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .pj-lth__badge[data-position-mobile="top-left"] {
    top: 5%; left: 5%; right: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-mobile="top-center"] {
    top: 5%; left: 50%; right: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) translateX(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-mobile="top-right"] {
    top: 5%; right: 5%; left: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-mobile="middle-left"] {
    top: 50%; left: 5%; right: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) translateY(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-mobile="middle-center"] {
    top: 50%; left: 50%; right: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) translate(-50%, -50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-mobile="middle-right"] {
    top: 50%; right: 5%; left: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) translateY(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-mobile="bottom-left"] {
    bottom: 5%; left: 5%; right: auto; top: auto;
    transform: var(--pj-lth-badge-offset) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-mobile="bottom-center"] {
    bottom: 5%; left: 50%; right: auto; top: auto;
    transform: var(--pj-lth-badge-offset) translateX(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-mobile="bottom-right"] {
    bottom: 5%; right: 5%; left: auto; top: auto;
    transform: var(--pj-lth-badge-offset) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
}

/* Desktop (≥ 768px) */
@media (min-width: 768px) {
  .pj-lth__badge[data-position-desktop="top-left"] {
    top: 5%; left: 5%; right: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-desktop="top-center"] {
    top: 5%; left: 50%; right: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) translateX(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-desktop="top-right"] {
    top: 5%; right: 5%; left: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-desktop="middle-left"] {
    top: 50%; left: 5%; right: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) translateY(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-desktop="middle-center"] {
    top: 50%; left: 50%; right: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) translate(-50%, -50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-desktop="middle-right"] {
    top: 50%; right: 5%; left: auto; bottom: auto;
    transform: var(--pj-lth-badge-offset) translateY(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-desktop="bottom-left"] {
    bottom: 5%; left: 5%; right: auto; top: auto;
    transform: var(--pj-lth-badge-offset) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-desktop="bottom-center"] {
    bottom: 5%; left: 50%; right: auto; top: auto;
    transform: var(--pj-lth-badge-offset) translateX(-50%) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
  .pj-lth__badge[data-position-desktop="bottom-right"] {
    bottom: 5%; right: 5%; left: auto; top: auto;
    transform: var(--pj-lth-badge-offset) rotate(var(--pj-lth-badge-rotation, -5deg));
  }
}

.pj-lth__badge-label {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pj-lth__badge-was {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: line-through;
  opacity: 0.8;
  margin-bottom: 0.15rem;
}

.pj-lth__badge-now {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: clamp(1.35rem, 1.5vw + 0.75rem, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/*
 * Saws keep their merchant-driven rotation/offset throughout the entrance —
 * only opacity animates. Without this override, the .pj-lth__enter animation
 * ends with transform: translateY(0), which (with animation-fill-mode: forwards)
 * would erase the per-block rotation and horizontal offset once the animation
 * completes.
 */
.pj-lth__saw.pj-lth__enter {
  animation-name: pj-lth-saw-fade;
  transform: translate(var(--pj-lth-saw-offset-x, 0%), var(--pj-lth-saw-offset-y, 0%));
}

@keyframes pj-lth-saw-fade {
  to { opacity: 1; }
}

/* Entrance animation */
.pj-lth__enter {
  opacity: 0;
  transform: translateY(12px);
  animation: pj-lth-fade-up 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--enter-delay, 0ms);
}

.pj-lth__enter--scale {
  transform: translateY(0) scale(0.96);
  animation-name: pj-lth-fade-scale;
}

@keyframes pj-lth-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pj-lth-fade-scale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Badge keeps its position-driven transform throughout its entrance — only opacity animates. */
.pj-lth__badge.pj-lth__enter {
  animation-name: pj-lth-badge-fade;
}

@keyframes pj-lth-badge-fade {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .pj-lth__enter,
  .pj-lth__enter--scale {
    animation: none;
    opacity: 1;
    transform: none;
  }
  /* Higher-specificity overrides that set animation-name must also be
     neutralised, otherwise the saw/badge fade keyframes survive. */
  .pj-lth__saw.pj-lth__enter {
    animation: none;
    opacity: 1;
    transform: translate(var(--pj-lth-saw-offset-x, 0%), var(--pj-lth-saw-offset-y, 0%));
  }
  .pj-lth__badge.pj-lth__enter {
    animation: none;
    opacity: 1;
  }
}
/* END_SECTION:pj_limitedtimehero */

/* START_SECTION:pj_meetthemakers (INDEX:19) */
.pj-mtm {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--pj-mtm-text-bg, #F5F1EC);
  color: var(--pj-mtm-body-text, #2C2C2C);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  box-sizing: border-box;
}

.pj-mtm__rule {
  width: 100%;
  height: 1px;
  background: var(--pj-mtm-divider, rgba(44, 44, 44, 0.12));
}

.pj-mtm__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 640px;
}

@media (min-width: 1024px) {
  .pj-mtm__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
  }
}

/* === Text panel === */
.pj-mtm__text {
  background: var(--pj-mtm-text-bg, #F5F1EC);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pj-mtm-pad-y-mobile, 64px) 32px;
  box-sizing: border-box;
  order: 1;
}

@media (min-width: 640px) {
  .pj-mtm__text {
    padding-inline: 48px;
  }
}

@media (min-width: 1024px) {
  .pj-mtm__text {
    padding: var(--pj-mtm-pad-y-desktop, 96px) 64px;
  }
}

@media (min-width: 1280px) {
  .pj-mtm__text {
    padding-inline: 80px;
  }
}

.pj-mtm__text-inner {
  width: 100%;
  max-width: var(--pj-mtm-max-width, 640px);
  margin: 0 auto;
}

/* Image position toggle */
.pj-mtm--image-left .pj-mtm__text {
  order: 2;
}

.pj-mtm--image-left .pj-mtm__media {
  order: 1;
}

@media (max-width: 1023px) {
  /* On mobile always image first then text, regardless of desktop position */
  .pj-mtm__media {
    order: 1;
  }
  .pj-mtm__text {
    order: 2;
  }
}

/* === Eyebrow === */
.pj-mtm__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.pj-mtm__eyebrow-dash {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--pj-mtm-eyebrow, #B52025);
  flex-shrink: 0;
}

.pj-mtm__eyebrow-text {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pj-mtm-eyebrow, #B52025);
}

/* === Heading === */
.pj-mtm__heading {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 400;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--pj-mtm-heading, #2C2C2C);
  margin: 0 0 24px 0;
  overflow-wrap: break-word;
}

@media (min-width: 640px) {
  .pj-mtm__heading {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .pj-mtm__heading {
    font-size: 52px;
  }
}

@media (min-width: 1280px) {
  .pj-mtm__heading {
    font-size: 60px;
  }
}

/* === Divider === */
.pj-mtm__divider {
  width: 40px;
  height: 1px;
  background: var(--pj-mtm-divider, rgba(44, 44, 44, 0.25));
  margin-bottom: 28px;
}

/* === Quote === */
.pj-mtm__quote {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--pj-mtm-quote-text, #2C2C2C);
  border-left: 2px solid var(--pj-mtm-quote-border, #B52025);
  padding-left: 20px;
  margin: 0 0 28px 0;
}

@media (min-width: 640px) {
  .pj-mtm__quote {
    font-size: 20px;
  }
}

.pj-mtm__quote p {
  margin: 0 0 0.5em 0;
}

.pj-mtm__quote p:last-child {
  margin-bottom: 0;
}

/* === Body === */
.pj-mtm__body {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 14px;
  line-height: 1.85;
  color: var(--pj-mtm-muted-text, #5C5C5C);
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .pj-mtm__body {
    font-size: 15px;
  }
}

.pj-mtm__body p {
  margin: 0 0 1em 0;
}

.pj-mtm__body p:last-child {
  margin-bottom: 0;
}

/* === Stats === */
.pj-mtm__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px solid var(--pj-mtm-divider, rgba(44, 44, 44, 0.12));
}

.pj-mtm__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pj-mtm__stat-num {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--pj-mtm-heading, #2C2C2C);
  margin: 0;
}

@media (min-width: 640px) {
  .pj-mtm__stat-num {
    font-size: 36px;
  }
}

.pj-mtm__stat-label {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pj-mtm-muted-text, #5C5C5C);
  margin: 4px 0 0 0;
}

/* === CTAs === */
.pj-mtm__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.pj-mtm__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pj-mtm-cta-bg, #2D4A3E);
  color: var(--pj-mtm-cta-fg, #FAF8F5);
  padding: 14px 32px;
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--pj-mtm-cta-bg, #2D4A3E);
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease;
}

@media (hover: hover) {
  .pj-mtm__cta-primary:hover {
    background-color: var(--pj-mtm-cta-bg-hover, #1F362C);
    border-color: var(--pj-mtm-cta-bg-hover, #1F362C);
  }
}

.pj-mtm__cta-primary:focus-visible {
  outline: 2px solid var(--pj-mtm-cta-bg, #2D4A3E);
  outline-offset: 3px;
}

.pj-mtm__cta-secondary {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pj-mtm-sec-cta-text, #5C5C5C);
  text-decoration: underline;
  text-decoration-color: var(--pj-mtm-sec-cta-underline, currentColor);
  text-underline-offset: 4px;
  transition: opacity 200ms ease;
}

@media (hover: hover) {
  .pj-mtm__cta-secondary:hover {
    opacity: 0.6;
  }
}

.pj-mtm__cta-secondary:focus-visible {
  outline: 2px solid var(--pj-mtm-sec-cta-text, #5C5C5C);
  outline-offset: 3px;
}

/* === Press credit === */
.pj-mtm__press {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-style: italic;
  font-size: 12px;
  line-height: 1.6;
  color: var(--pj-mtm-muted-text, #5C5C5C);
  opacity: 0.85;
  margin: 0;
}

.pj-mtm__press p {
  margin: 0;
}

/* === Image panel === */
.pj-mtm__media {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  background: var(--pj-mtm-text-bg, #F5F1EC);
}

.pj-mtm__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pj-mtm__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pj-mtm__img--placeholder {
  background: linear-gradient(135deg, #d8cfc4 0%, #b8a994 100%);
}

/* === Chip overlay === */
.pj-mtm__chip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--pj-mtm-chip-bg, #2D4A3E);
  color: var(--pj-mtm-chip-text, #FAF8F5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: calc(100% - 48px);
}

.pj-mtm__chip-dash {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--pj-mtm-chip-text, #FAF8F5);
  opacity: 0.85;
  flex-shrink: 0;
}

.pj-mtm__chip-text {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pj-mtm-chip-text, #FAF8F5);
  opacity: 0.95;
}

/* === Motion === */
.pj-mtm__enter {
  opacity: 0;
  animation-duration: 720ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

.pj-mtm__enter--from-left {
  transform: translateX(-24px);
  animation-name: pj-mtm-enter-from-left;
  animation-delay: 100ms;
}

.pj-mtm__enter--from-right {
  transform: scale(1.04);
  animation-name: pj-mtm-enter-from-right;
  animation-delay: 200ms;
  animation-duration: 900ms;
}

@keyframes pj-mtm-enter-from-left {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pj-mtm-enter-from-right {
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .pj-mtm__enter,
  .pj-mtm__enter--from-left,
  .pj-mtm__enter--from-right {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pj-mtm__cta-primary,
  .pj-mtm__cta-secondary {
    transition: none;
  }
}

section.shopify-section.shopify-section--pj-meet-the-makers {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_meetthemakers */

/* START_SECTION:pj_productspotlightbanner (INDEX:20) */
.pj-psb {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--pj-psb-bg, #2D4A3E);
  color: var(--pj-psb-text, #FAF8F5);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pj-psb-pad-y-mobile, 32px) 24px;
}

@media (min-width: 1024px) {
  .pj-psb {
    padding: var(--pj-psb-pad-y-desktop, 64px) 48px;
  }
}

.pj-psb__inner {
  width: 100%;
  max-width: var(--pj-psb-max-width, 1400px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pj-psb__inner {
    flex-direction: row;
  }
  .pj-psb--image-right .pj-psb__inner {
    flex-direction: row-reverse;
  }
}

/* === Media === */
.pj-psb__media {
  position: relative;
  width: 100%;
  aspect-ratio: var(--pj-psb-image-aspect, 3 / 4);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pj-psb__media {
    width: 50%;
    aspect-ratio: var(--pj-psb-image-aspect, 3 / 4);
  }
}

.pj-psb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.pj-psb__img--placeholder {
  background: rgba(255, 255, 255, 0.05);
}

/* === Badge === */
.pj-psb__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--pj-psb-badge-bg, #C1694F);
  color: var(--pj-psb-badge-fg, #FAF8F5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.35);
}

.pj-psb__badge--animated::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: 0 0 18px 5px rgba(255, 215, 0, 0.55);
  opacity: 0;
  animation: pj-psb-badge-glow 3000ms ease-in-out infinite;
}

.pj-psb__badge-icon {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.pj-psb__badge-text {
  position: relative;
  z-index: 1;
}

@keyframes pj-psb-badge-glow {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}

/* === Content === */
.pj-psb__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 0;
}

@media (min-width: 1024px) {
  .pj-psb__content {
    width: 50%;
    padding: 64px var(--pj-psb-pad-x-desktop, 64px);
    padding-right: 16px;
  }
  .pj-psb--image-right .pj-psb__content {
    padding: 64px var(--pj-psb-pad-x-desktop, 64px);
    padding-left: 16px;
  }
}

@media (min-width: 1280px) {
  .pj-psb__content {
    padding-left: calc(var(--pj-psb-pad-x-desktop, 64px) + 32px);
  }
  .pj-psb--image-right .pj-psb__content {
    padding-left: 16px;
    padding-right: calc(var(--pj-psb-pad-x-desktop, 64px) + 32px);
  }
}

.pj-psb__eyebrow {
  display: block;
  font-size: var(--pj-psb-eyebrow-size-mobile, 12px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pj-psb-eyebrow, rgba(250, 248, 245, 0.6));
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .pj-psb__eyebrow {
    font-size: var(--pj-psb-eyebrow-size-desktop, 12px);
  }
}

.pj-psb__heading {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 400;
  font-size: var(--pj-psb-heading-size-mobile, 36px);
  line-height: 1.1;
  color: var(--pj-psb-text, #FAF8F5);
  margin: 0 0 32px;
  overflow-wrap: break-word;
}

@media (min-width: 1024px) {
  .pj-psb__heading {
    font-size: var(--pj-psb-heading-size-desktop, 56px);
  }
}

.pj-psb__body {
  font-size: var(--pj-psb-body-size-mobile, 18px);
  line-height: 1.6;
  color: var(--pj-psb-muted, rgba(250, 248, 245, 0.8));
  margin-bottom: 40px;
  max-width: 32rem;
}

.pj-psb__body :first-child { margin-top: 0; }
.pj-psb__body :last-child { margin-bottom: 0; }

@media (min-width: 1024px) {
  .pj-psb__body {
    font-size: var(--pj-psb-body-size-desktop, 20px);
  }
}

.pj-psb__price-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
}

.pj-psb__price {
  font-size: var(--pj-psb-price-size-mobile, 26px);
  font-weight: 700;
  color: var(--pj-psb-text, #FAF8F5);
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .pj-psb__price {
    font-size: var(--pj-psb-price-size-desktop, 30px);
  }
}

/* Inside the wrap (live-price flow), the wrap owns the bottom margin. */
.pj-psb__price-wrap .pj-psb__price {
  margin-bottom: 0;
}

.pj-psb__price--sale {
  color: var(--pj-psb-sale-price, #E8A87C);
}

.pj-psb__price--compare {
  font-size: 20px;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.55;
}

.pj-psb__price-savings {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pj-psb-savings-color, #E8A87C);
  background: rgba(232, 168, 124, 0.12);
  padding: 3px 10px;
  border-radius: 2px;
}

/* === Urgency callout === */
.pj-psb__urgency {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 2px solid var(--pj-psb-urgency-border, #C1694F);
  padding-left: 16px;
  margin-bottom: 40px;
}

.pj-psb__urgency-icon {
  display: inline-flex;
  align-items: center;
  color: var(--pj-psb-urgency-border, #C1694F);
  flex-shrink: 0;
  padding-top: 2px;
}

.pj-psb__urgency-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--pj-psb-urgency-text, rgba(250, 248, 245, 0.7));
}

.pj-psb__urgency-text strong {
  color: var(--pj-psb-text, #FAF8F5);
  font-weight: 600;
}

.pj-psb__urgency-text :first-child { margin-top: 0; }
.pj-psb__urgency-text :last-child { margin-bottom: 0; }

/* === CTA === */
.pj-psb__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pj-psb__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pj-psb-cta-bg, #C1694F);
  color: var(--pj-psb-cta-fg, #FAF8F5);
  padding: 16px 40px;
  font-size: var(--pj-psb-cta-size-mobile, 13px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, opacity 300ms ease;
}

@media (min-width: 1024px) {
  .pj-psb__cta {
    font-size: var(--pj-psb-cta-size-desktop, 13px);
  }
}

@media (hover: hover) {
  .pj-psb__cta:hover {
    background-color: var(--pj-psb-cta-bg-hover, #A95A43);
    color: var(--pj-psb-cta-fg-hover, #FAF8F5);
  }
}

.pj-psb__cta:focus-visible {
  outline: 2px solid var(--pj-psb-cta-bg, #C1694F);
  outline-offset: 3px;
}

/* Secondary CTA variants — same dimensions as primary, different fill. */
.pj-psb__cta--outline {
  background-color: transparent;
  color: var(--pj-psb-text, #FAF8F5);
  border-color: var(--pj-psb-text, #FAF8F5);
}

@media (hover: hover) {
  .pj-psb__cta--outline:hover {
    background-color: var(--pj-psb-text, #FAF8F5);
    color: var(--pj-psb-bg, #2D4A3E);
  }
}

.pj-psb__cta--ghost {
  background-color: transparent;
  color: var(--pj-psb-text, #FAF8F5);
  border-color: transparent;
  padding-left: 8px;
  padding-right: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (hover: hover) {
  .pj-psb__cta--ghost:hover {
    background-color: transparent;
    color: var(--pj-psb-cta-bg, #C1694F);
  }
}

/* === Motion === */
.pj-psb__enter {
  opacity: 0;
  animation-duration: 800ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

.pj-psb__enter--from-left {
  transform: translateX(-20px);
  animation-name: pj-psb-enter-from-left;
  animation-delay: 0ms;
}

.pj-psb__enter--from-right {
  transform: translateX(20px);
  animation-name: pj-psb-enter-from-right;
  animation-delay: 200ms;
}

.pj-psb__enter--badge {
  transform: translateY(-8px);
  animation-name: pj-psb-enter-badge;
  animation-delay: 500ms;
  animation-duration: 600ms;
}

.pj-psb__enter--urgency {
  transform: none;
  animation-name: pj-psb-enter-fade;
  animation-delay: 700ms;
  animation-duration: 600ms;
}

@keyframes pj-psb-enter-from-left {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pj-psb-enter-from-right {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pj-psb-enter-badge {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pj-psb-enter-fade {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .pj-psb__enter,
  .pj-psb__enter--from-left,
  .pj-psb__enter--from-right,
  .pj-psb__enter--badge,
  .pj-psb__enter--urgency {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pj-psb__badge--animated::before {
    animation: none;
    opacity: 0;
  }

  .pj-psb__cta {
    transition: none;
  }
}

section.shopify-section.shopify-section--pj-product-spotlight {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_productspotlightbanner */

/* START_SECTION:pj_promobannerstrip (INDEX:21) */
section.shopify-section.shopify-section--pj-promo-banner-strip {
  margin-top: 0 !important;
  padding-top: 0 !important;
  transform: none !important;
}

.promo-strip {
  display: block;
  width: 100%;
  background: var(--promo-strip-bg, #ebe5d4);
  border-bottom: 1px solid var(--promo-strip-border, #eae4d9);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  color: var(--promo-strip-text, #2a332a);
}

.promo-strip--sticky {
  position: sticky;
  top: var(--header-height, 0px);
  z-index: var(--promo-strip-z, 9);
}

.promo-strip__desktop {
  display: flex;
  width: 100%;
  justify-content: center;
}

.promo-strip__row {
  width: 100%;
  max-width: var(--promo-strip-max-width, 1680px);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.promo-strip__cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  text-align: center;
  cursor: default;
  transition: background-color 300ms ease-in-out;
}

.promo-strip__divider {
  align-self: stretch;
  width: 1px;
  flex-shrink: 0;
  background-color: var(--promo-strip-divider, rgba(42, 51, 42, 0.2));
  transition: opacity 200ms ease;
}

@media (hover: hover) {
  .promo-strip__cell:hover {
    background-color: var(--promo-strip-hover-tint, rgba(42, 51, 42, 0.05));
  }

  .promo-strip__cell:hover + .promo-strip__divider {
    opacity: 0;
  }

  .promo-strip__divider:has(+ .promo-strip__cell:hover) {
    opacity: 0;
  }
}

.promo-strip__title {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 22px;
  color: var(--promo-strip-text, #2a332a);
}

.promo-strip__link {
  margin-top: 4px;
  font-size: 14px;
  color: var(--promo-strip-text, #2a332a);
  text-decoration: none;
  text-underline-offset: 2px;
  transition: color 200ms ease;
}

@media (hover: hover) {
  .promo-strip__cell:hover .promo-strip__link {
    color: var(--promo-strip-accent, #c35330);
  }

  .promo-strip__link:hover {
    text-decoration: underline;
  }
}

.promo-strip__link:focus-visible {
  text-decoration: underline;
}

.promo-strip__link:focus-visible {
  outline: 2px solid var(--promo-strip-accent, #c35330);
  outline-offset: 2px;
}

/* Mobile carousel */
.promo-strip__mobile {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.promo-strip__carousel {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 8px;
  gap: 4px;
}

.promo-strip__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 4px;
  border: 0;
  background: transparent;
  color: color-mix(in srgb, var(--promo-strip-text, #2a332a) 50%, transparent);
  cursor: pointer;
  border-radius: 4px;
  transition: color 150ms ease, background-color 150ms ease;
  font-family: inherit;
}

@media (hover: hover) {
  .promo-strip__arrow:hover {
    color: var(--promo-strip-text, #2a332a);
  }
}

.promo-strip__arrow:focus-visible {
  color: var(--promo-strip-text, #2a332a);
}

.promo-strip__arrow:focus-visible {
  outline: 2px solid var(--promo-strip-accent, #c35330);
  outline-offset: 2px;
}

.promo-strip__viewport {
  flex: 1;
  overflow: hidden;
}

.promo-strip__track {
  display: flex;
  flex-direction: row;
  transition: transform 300ms ease-in-out;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .promo-strip__track {
    transition: none;
  }
}

.promo-strip__slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.promo-strip__title--mobile {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3px;
  line-height: 1.375;
  color: var(--promo-strip-text, #2a332a);
}

.promo-strip__link--mobile {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.375;
  color: var(--promo-strip-text-soft, rgba(42, 51, 42, 0.7));
  text-decoration: none;
  text-underline-offset: 2px;
  transition: color 200ms ease;
}

@media (hover: hover) {
  .promo-strip__link--mobile:hover {
    color: var(--promo-strip-accent, #c35330);
    text-decoration: underline;
  }
}

.promo-strip__link--mobile:focus-visible {
  color: var(--promo-strip-accent, #c35330);
  text-decoration: underline;
  outline: 2px solid var(--promo-strip-accent, #c35330);
  outline-offset: 2px;
}

.promo-strip__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 10px;
}

.promo-strip__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--promo-strip-text, #2a332a) 20%, transparent);
  cursor: pointer;
  transition: width 200ms ease, background-color 200ms ease;
  font-family: inherit;
}

.promo-strip__dot:focus-visible {
  outline: 2px solid var(--promo-strip-accent, #c35330);
  outline-offset: 2px;
}

.promo-strip__dot.is-active {
  width: 14px;
  background: var(--promo-strip-accent, #c35330);
}

@media (prefers-reduced-motion: reduce) {
  .promo-strip__dot {
    transition: none;
  }
}

.promo-strip__mobile {
  display: flex;
}

@media (min-width: 768px) {
  .promo-strip__mobile {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .promo-strip__desktop {
    display: none;
  }
}
/* END_SECTION:pj_promobannerstrip */

/* START_SECTION:pj_signupofferbanner (INDEX:22) */
.pj-sob {
  width: 100%;
  background: var(--pj-sob-bg, #C1694F);
  color: var(--pj-sob-fg, #FAF8F5);
  font-family: var(--pj-sob-body-font, var(--font-body, 'Rubik', system-ui, sans-serif));
  overflow: hidden;
  box-sizing: border-box;
}

.pj-sob__inner {
  position: relative;
  width: 100%;
  max-width: var(--pj-sob-max-width, 1280px);
  margin: 0 auto;
  padding: var(--pj-sob-pad-y-mobile, 32px) var(--pj-sob-pad-x-mobile, 24px);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-sob__inner {
    padding: var(--pj-sob-pad-y-desktop, 36px) var(--pj-sob-pad-x-desktop, 32px);
  }
}

.pj-sob__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .pj-sob__panel--form {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
}

.pj-sob__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.pj-sob__heading {
  font-family: var(--pj-sob-heading-font, var(--font-heading, 'EB Garamond', serif));
  font-size: var(--pj-sob-heading-size-mobile, 26px);
  font-weight: var(--pj-sob-heading-weight, 400);
  line-height: 1.1;
  margin: 0;
  color: inherit;
}

@media (min-width: 1024px) {
  .pj-sob__heading {
    font-size: var(--pj-sob-heading-size-desktop, 32px);
  }
}

.pj-sob__subheading {
  font-family: var(--pj-sob-body-font, var(--font-body, 'Rubik', system-ui, sans-serif));
  font-size: var(--pj-sob-body-size-mobile, 14px);
  line-height: 1.45;
  margin: 0;
  color: var(--pj-sob-fg-muted, rgba(250, 248, 245, 0.85));
}

@media (min-width: 1024px) {
  .pj-sob__subheading {
    font-size: var(--pj-sob-body-size-desktop, 16px);
  }
}

/* === Form === */
.pj-sob__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .pj-sob__form {
    flex-direction: row;
    gap: 0;
    width: auto;
  }
}

.pj-sob__field {
  width: 100%;
}

@media (min-width: 640px) {
  .pj-sob__field {
    width: auto;
  }
}

.pj-sob__input {
  width: 100%;
  height: var(--pj-sob-control-height, 48px);
  padding: 0 16px;
  background: var(--pj-sob-input-bg, rgba(255, 255, 255, 0.1));
  border: 1px solid var(--pj-sob-input-border, rgba(255, 255, 255, 0.3));
  color: var(--pj-sob-input-fg, #FAF8F5);
  font: inherit;
  font-size: var(--pj-sob-input-size, 14px);
  border-radius: 0;
  box-sizing: border-box;
  transition: background-color 200ms ease, border-color 200ms ease;
  appearance: none;
}

@media (min-width: 640px) {
  .pj-sob__input {
    width: var(--pj-sob-input-width, 320px);
    border-right: 0;
  }
}

.pj-sob__input::placeholder {
  color: var(--pj-sob-input-placeholder, rgba(250, 248, 245, 0.6));
  opacity: 1;
}

.pj-sob__input:focus {
  outline: none;
  background: var(--pj-sob-input-bg-focus, rgba(255, 255, 255, 0.2));
  border-color: var(--pj-sob-input-border-focus, rgba(255, 255, 255, 0.6));
}

.pj-sob__input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pj-sob__input.is-invalid {
  border-color: var(--pj-sob-input-border-focus, rgba(255, 255, 255, 0.6));
  background: var(--pj-sob-input-bg-focus, rgba(255, 255, 255, 0.2));
}

.pj-sob__button {
  height: var(--pj-sob-control-height, 48px);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pj-sob-btn-bg, #FAF8F5);
  color: var(--pj-sob-btn-fg, #C1694F);
  font: inherit;
  font-size: var(--pj-sob-button-size, 12px);
  font-weight: 700;
  letter-spacing: var(--pj-sob-button-letter-spacing, 0.1em);
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, opacity 200ms ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
}

@media (hover: hover) {
  .pj-sob__button:hover:not(:disabled) {
    background: var(--pj-sob-btn-bg-hover, var(--pj-sob-btn-bg, #FAF8F5));
    color: var(--pj-sob-btn-fg-hover, var(--pj-sob-btn-fg, #C1694F));
    opacity: 0.92;
  }
}

.pj-sob__button:focus-visible {
  outline: 2px solid var(--pj-sob-fg, #FAF8F5);
  outline-offset: 2px;
}

.pj-sob__button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.pj-sob__button-spinner {
  display: none;
  animation: pj-sob-spin 900ms linear infinite;
}

.pj-sob__button[data-loading="true"] .pj-sob__button-label { opacity: 0; visibility: hidden; }
.pj-sob__button[data-loading="true"] .pj-sob__button-spinner {
  display: inline-flex;
  position: absolute;
}

.pj-sob__button[data-loading="true"] {
  position: relative;
}

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

/* === Feedback line (inline errors) === */
.pj-sob__feedback {
  width: 100%;
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--pj-sob-fg-muted, rgba(250, 248, 245, 0.85));
  min-height: 1.2em;
}

.pj-sob__feedback[data-state="error"] {
  color: var(--pj-sob-fg, #FAF8F5);
  font-weight: 600;
}

/* === Honeypot — hide from humans, keep for bots === */
.pj-sob__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* === Success panel === */
.pj-sob__panel--success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

@media (min-width: 640px) {
  .pj-sob__panel--success {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    gap: 16px;
  }
}

.pj-sob__check {
  width: 32px;
  height: 32px;
  border: 2px solid var(--pj-sob-fg, #FAF8F5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pj-sob-fg, #FAF8F5);
  animation: pj-sob-check-pop 400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pj-sob__success-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

@media (min-width: 640px) {
  .pj-sob__success-text { align-items: flex-start; }
}

.pj-sob__success-heading {
  font-family: var(--pj-sob-heading-font, var(--font-heading, 'EB Garamond', serif));
  font-size: var(--pj-sob-heading-size-mobile, 22px);
  font-weight: var(--pj-sob-heading-weight, 400);
  line-height: 1.15;
  margin: 0;
  color: var(--pj-sob-fg, #FAF8F5);
}

@media (min-width: 1024px) {
  .pj-sob__success-heading {
    font-size: calc(var(--pj-sob-heading-size-desktop, 28px) - 4px);
  }
}

.pj-sob__success-subtext {
  font-size: var(--pj-sob-body-size-mobile, 13px);
  margin: 0;
  color: var(--pj-sob-fg-muted, rgba(250, 248, 245, 0.85));
}

@keyframes pj-sob-check-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* === Dismiss button === */
.pj-sob__dismiss {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--pj-sob-fg, #FAF8F5);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 150ms ease, background-color 150ms ease;
}

@media (hover: hover) {
  .pj-sob__dismiss:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.08);
  }
}

.pj-sob__dismiss:focus-visible {
  outline: 2px solid var(--pj-sob-fg, #FAF8F5);
  outline-offset: 2px;
  opacity: 1;
}

/* === Collapse-out transition for dismiss === */
.pj-sob {
  transition: max-height 350ms ease, opacity 250ms ease, padding 350ms ease;
  max-height: 1000px;
}

.pj-sob.is-collapsed {
  max-height: 0;
  opacity: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
  overflow: hidden;
}

.pj-sob__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pj-sob,
  .pj-sob__check,
  .pj-sob__button-spinner,
  .pj-sob__input,
  .pj-sob__button,
  .pj-sob__dismiss {
    transition: none;
    animation: none;
  }
}

section.shopify-section.shopify-section--pj-signup-offer-banner {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_signupofferbanner */

/* START_SECTION:pj_siteheader (INDEX:23) */
section.shopify-section.shopify-section--pj-site-header { margin-top: 0; padding-top: 0; }

.pj-sh {
  display: block;
  width: 100%;
  background-color: var(--pj-sh-topbar-bg, #F5F1EC);
  color: var(--pj-sh-topbar-fg, #2C2C2C);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}

.pj-sh--sticky {
  position: sticky;
  top: 0;
  z-index: var(--pj-sh-z, 60);
  transition: box-shadow 0.3s ease;
}
.pj-sh--sticky.is-scrolled {
  box-shadow: 0 2px 20px rgba(42, 51, 42, 0.12);
}

/* ── Top bar ── */
.pj-sh__topbar {
  background-color: var(--pj-sh-topbar-bg, #F5F1EC);
}
.pj-sh__topbar-inner {
  max-width: 1600px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-inline: 1.5rem;
  padding-block: 0.5rem;
  min-height: var(--pj-sh-min-h, 76px);
  transition: min-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .pj-sh__topbar-inner {
    flex-wrap: nowrap;
    padding-block: 0;
  }
}
@media (min-width: 1024px) {
  .pj-sh__topbar-inner { padding-inline: 2.5rem; }
}
.pj-sh--sticky.is-scrolled .pj-sh__topbar-inner {
  min-height: var(--pj-sh-min-h-scrolled, 58px);
}

/* Logo */
.pj-sh__logo-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--pj-sh-topbar-fg, #2C2C2C);
  line-height: 1;
}
.pj-sh__logo-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.pj-sh__logo-img,
.pj-sh__logo-svg {
  display: block;
  width: auto;
  height: var(--pj-sh-logo-h, 54px);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pj-sh--sticky.is-scrolled .pj-sh__logo-img,
.pj-sh--sticky.is-scrolled .pj-sh__logo-svg {
  height: var(--pj-sh-logo-h-scrolled, 40px);
}

/* Search trigger */
.pj-sh__search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 1rem;
  height: 44px;
  border: 1px solid var(--pj-sh-search-border, #D6DAD0);
  background-color: var(--pj-sh-search-bg, #FAF8F5);
  color: var(--pj-sh-search-fg, #717182);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);

  /* Mobile: full-width row that wraps below the logo row. */
  order: 99;
  flex: 1 1 100%;
  margin-block-end: 0.25rem;
}
@media (min-width: 768px) {
  .pj-sh__search-trigger {
    /* Desktop: inline middle of the logo row. */
    order: 0;
    flex: 1 1 auto;
    margin-inline: 1rem;
    margin-block-end: 0;
  }
}
@media (hover: hover) {
  .pj-sh__search-trigger:hover { border-color: var(--pj-sh-topbar-fg, #2C2C2C); }
}
.pj-sh__search-trigger:focus-visible {
  outline: 2px solid var(--pj-sh-nav-fg-active, #C1694F);
  outline-offset: 2px;
}
.pj-sh__search-trigger-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.pj-sh__icon--accent { color: var(--pj-sh-nav-fg-active, #C1694F); }
.pj-sh__icon { width: 16px; height: 16px; flex-shrink: 0; display: block; }
.pj-sh__icon-btn .pj-sh__icon { width: 19px; height: 19px; }
.pj-sh__search-placeholder {
  font-size: 13px;
  font-style: italic;
  color: var(--pj-sh-search-fg, #717182);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pj-sh__search-kbd {
  display: none;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--pj-sh-topbar-muted, #717182);
  opacity: 0.6;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .pj-sh__search-kbd { display: inline; }
}

/* Right-side actions */
.pj-sh__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.pj-sh__icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--pj-sh-topbar-fg, #2C2C2C);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
  border-radius: 2px;
}
@media (hover: hover) {
  .pj-sh__icon-btn:hover {
    opacity: 1;
    color: var(--pj-sh-nav-fg-active, #C1694F);
  }
}
.pj-sh__icon-btn:focus-visible {
  opacity: 1;
  outline: 2px solid var(--pj-sh-nav-fg-active, #C1694F);
  outline-offset: 2px;
}
.pj-sh__icon-btn--hamburger { display: inline-flex; }
@media (min-width: 1024px) {
  .pj-sh__icon-btn--hamburger { display: none; }
}

/* Cart badge */
.pj-sh__cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  background-color: var(--pj-sh-cart-badge-bg, #C1694F);
  color: var(--pj-sh-cart-badge-fg, #FAF8F5);
  border-radius: 999px;
  pointer-events: none;
}

/* ── Utility link strip ── */
.pj-sh__utility {
  background-color: var(--pj-sh-topbar-bg, #F5F1EC);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: none;
}
.pj-sh__utility--always { display: block; }
@media (min-width: 768px) {
  .pj-sh__utility--md_only { display: block; }
}
@media (min-width: 1024px) {
  .pj-sh__utility--md_only { display: none; }
}
.pj-sh__utility-inner {
  max-width: 1600px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  height: 38px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pj-sh__utility-inner::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .pj-sh__utility-inner { padding-inline: 2.5rem; }
}
.pj-sh__utility-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pj-sh-utility-fg, #2C2C2C);
  opacity: 0.7;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__utility-link:hover {
    opacity: 1;
    color: var(--pj-sh-nav-fg-active, #C1694F);
  }
}
.pj-sh__utility-link:focus-visible {
  opacity: 1;
  outline: 2px solid var(--pj-sh-nav-fg-active, #C1694F);
  outline-offset: 2px;
}

/* ── Category nav (lg+) ── */
.pj-sh__nav-wrap {
  position: relative;
  display: none;
}
@media (min-width: 1024px) {
  .pj-sh__nav-wrap { display: block; }
}
.pj-sh__nav {
  background-color: var(--pj-sh-nav-bg, #2D4A3E);
  color: var(--pj-sh-nav-fg, #FAF8F5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pj-sh__nav-inner {
  max-width: 1600px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-inline: 2.5rem;
  min-height: 44px;
}
.pj-sh--sticky.is-scrolled .pj-sh__nav-inner {
  min-height: 40px;
}
.pj-sh__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pj-sh-nav-fg, #FAF8F5);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.pj-sh__nav-link--sale,
.pj-sh__nav-link--sale.is-active { color: var(--pj-sh-nav-fg-sale, #C1694F); }
@media (hover: hover) {
  .pj-sh__nav-link:hover { color: var(--pj-sh-nav-fg-active, #C1694F); }
  .pj-sh__nav-link--sale:hover { opacity: 0.8; color: var(--pj-sh-nav-fg-sale, #C1694F); }
}
.pj-sh__nav-link.is-active,
.pj-sh__nav-link.is-open { color: var(--pj-sh-nav-fg-active, #C1694F); }
.pj-sh__nav-link:focus-visible {
  outline: 2px solid var(--pj-sh-nav-fg-active, #C1694F);
  outline-offset: -2px;
}
.pj-sh__nav-chevron {
  width: 13px;
  height: 13px;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}
.pj-sh__nav-link.is-open .pj-sh__nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--pj-sh-nav-fg-active, #C1694F);
}
.pj-sh__nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--pj-sh-nav-underline, #C1694F);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
@media (hover: hover) {
  .pj-sh__nav-link:hover .pj-sh__nav-underline { transform: scaleX(1); }
}
.pj-sh__nav-link.is-open .pj-sh__nav-underline { transform: scaleX(1); }

/* ── Mega menu panels ── */
.pj-sh__mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--pj-sh-mega-bg, #FAF8F5);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(42, 51, 42, 0.12);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1;
}
.pj-sh__mega.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pj-sh__mega[hidden] { display: none; }
.pj-sh__mega-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 2.5rem;
}
.pj-sh__mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 3rem;
}
.pj-sh__mega-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.4375rem 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--pj-sh-mega-link, #2C2C2C);
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__mega-link:hover { color: var(--pj-sh-mega-link-hover, #C1694F); }
}
.pj-sh__mega-link:focus-visible {
  outline: 2px solid var(--pj-sh-mega-link-hover, #C1694F);
  outline-offset: 2px;
}
.pj-sh__mega-link-label { display: inline-block; }
.pj-sh__mega-link-badge {
  display: inline-flex;
  align-items: center;
  height: 15px;
  padding: 0 0.4375rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  background-color: var(--pj-sh-mega-badge-new-bg, #2D4A3E);
  color: var(--pj-sh-mega-badge-new-fg, #FAF8F5);
  border-radius: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Rich mega menu (Phase 4): bestsellers | groups | featured cards ── */
.pj-sh__mega--rich .pj-sh__mega-inner {
  max-width: var(--pj-sh-mega-max-w, 1280px);
  padding: 2.5rem;
}
.pj-sh__mega-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 2.5rem;
}
.pj-sh__mega-col { display: flex; flex-direction: column; }
.pj-sh__mega-col--bestsellers {
  flex: 0 0 260px;
  min-width: 260px;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.pj-sh__mega-col--groups {
  flex: 1 1 auto;
  min-width: 0;
}
.pj-sh__mega-col--featured {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.pj-sh__mega-col-heading {
  margin: 0 0 0.75rem 0;
  padding: 0 0 0.75rem 0;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-style: italic;
  font-size: 11px;
  line-height: 1;
  color: var(--pj-sh-mega-heading, #2C2C2C);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Best-seller column cards */
.pj-sh__mega-bs-list,
.pj-sh__mega-groups,
.pj-sh__mega-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pj-sh__mega-bs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pj-sh__mega-bs-card {
  display: flex;
  align-items: stretch;
  min-height: 90px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: var(--pj-sh-mega-bg, #FAF8F5);
  transition: box-shadow 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__mega-bs-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
  .pj-sh__mega-bs-card:hover .pj-sh__mega-bs-img { transform: scale(1.05); }
  .pj-sh__mega-bs-card:hover .pj-sh__mega-bs-title { color: var(--pj-sh-mega-link-hover, #C1694F); }
}
.pj-sh__mega-bs-card:focus-visible {
  outline: 2px solid var(--pj-sh-mega-link-hover, #C1694F);
  outline-offset: 2px;
}
.pj-sh__mega-bs-img-wrap {
  flex: 0 0 110px;
  width: 110px;
  min-height: 90px;
  overflow: hidden;
  display: block;
}
.pj-sh__mega-bs-img {
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pj-sh__mega-bs-img--placeholder {
  background-color: rgba(0, 0, 0, 0.06);
}
.pj-sh__mega-bs-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}
.pj-sh__mega-bs-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 17px;
  padding: 0 0.5rem;
  background-color: var(--pj-sh-mega-badge-pop-bg, #2C2C2C);
  color: var(--pj-sh-mega-badge-pop-fg, #FAF8F5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 0;
  white-space: nowrap;
}
.pj-sh__mega-bs-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--pj-sh-mega-link, #2C2C2C);
  transition: color 0.2s ease;
}

/* Link groups column */
.pj-sh__mega-group { display: flex; flex-direction: column; min-width: 190px; }
.pj-sh__mega-group-item { margin: 0; }

/* Featured cards column */
.pj-sh__mega-cards {
  display: flex;
  gap: 1.25rem;
}
.pj-sh__mega-card {
  flex: 0 0 230px;
  width: 230px;
  text-decoration: none;
  color: var(--pj-sh-mega-link, #2C2C2C);
  display: flex;
  flex-direction: column;
}
.pj-sh__mega-card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  line-height: 0;
  background-color: rgba(0, 0, 0, 0.06);
}
.pj-sh__mega-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pj-sh__mega-card-img--placeholder {
  width: 100%;
  height: 200px;
  display: block;
}
@media (hover: hover) {
  .pj-sh__mega-card:hover .pj-sh__mega-card-img { transform: scale(1.03); }
  .pj-sh__mega-card:hover .pj-sh__mega-card-title { color: var(--pj-sh-mega-link-hover, #C1694F); }
}
.pj-sh__mega-card:focus-visible {
  outline: 2px solid var(--pj-sh-mega-link-hover, #C1694F);
  outline-offset: 2px;
}
.pj-sh__mega-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
.pj-sh__mega-card-title {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--pj-sh-mega-link, #2C2C2C);
  transition: color 0.2s ease;
}
.pj-sh__mega-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.4375rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 0;
}
.pj-sh__mega-card-badge--new {
  background-color: var(--pj-sh-mega-badge-new-bg, #2D4A3E);
  color: var(--pj-sh-mega-badge-new-fg, #FAF8F5);
}
.pj-sh__mega-card-badge--bestseller {
  background-color: var(--pj-sh-mega-badge-bs-bg, #C1694F);
  color: var(--pj-sh-mega-badge-bs-fg, #FAF8F5);
}
.pj-sh__mega-card-badge--sale {
  background-color: var(--pj-sh-mega-badge-sale-bg, #C1694F);
  color: var(--pj-sh-mega-badge-sale-fg, #FAF8F5);
}
.pj-sh__mega-card-badge--popular {
  background-color: var(--pj-sh-mega-badge-pop-bg, #2C2C2C);
  color: var(--pj-sh-mega-badge-pop-fg, #FAF8F5);
}

.pj-sh__mega-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.25rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--pj-sh-mega-link-hover, #C1694F);
  opacity: 0;
  transition: opacity 220ms ease;
}
.pj-sh__mega-card-cta svg { display: block; }
@media (hover: hover) {
  .pj-sh__mega-card:hover .pj-sh__mega-card-cta,
  .pj-sh__mega-card:focus-visible .pj-sh__mega-card-cta {
    opacity: 1;
  }
}
@media (hover: none) {
  .pj-sh__mega-card-cta { opacity: 1; }
}

/* Collapse rich layout below desktop — stack columns vertically so the panel doesn't overflow */
@media (max-width: 1023px) {
  .pj-sh__mega-grid { flex-direction: column; gap: 1.75rem; }
  .pj-sh__mega-col--bestsellers,
  .pj-sh__mega-col--featured { flex-basis: auto; min-width: 0; margin-left: 0; padding-right: 0; border-right: 0; }
  .pj-sh__mega-cards { flex-wrap: wrap; }
}

/* ── Mobile drawer (accordion mega menu) ── */
.pj-sh__mobile {
  position: fixed;
  inset: 0;
  z-index: calc(var(--pj-sh-z, 60) + 30);
  pointer-events: none;
}
.pj-sh__mobile.is-open { pointer-events: auto; }
.pj-sh__mobile[hidden] { display: none; }
.pj-sh__mobile-backdrop {
  position: absolute;
  inset: 0;
  background-color: var(--pj-sh-mobile-backdrop, #10140E);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pj-sh__mobile.is-open .pj-sh__mobile-backdrop { opacity: 0.45; }
.pj-sh__mobile-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background-color: var(--pj-sh-mobile-bg, #FAF8F5);
  color: var(--pj-sh-mobile-fg, #2C2C2C);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 6px 0 40px rgba(0, 0, 0, 0.18);
}
.pj-sh--mobile-left .pj-sh__mobile-panel { left: 0; transform: translateX(-100%); }
.pj-sh--mobile-right .pj-sh__mobile-panel {
  left: auto;
  right: 0;
  transform: translateX(100%);
  box-shadow: -6px 0 40px rgba(0, 0, 0, 0.18);
}
.pj-sh__mobile.is-open .pj-sh__mobile-panel { transform: translateX(0); }
@media (min-width: 1024px) {
  .pj-sh__mobile { display: none; }
}
.pj-sh__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 60px;
  border-bottom: 1px solid var(--pj-sh-mobile-border, #E5E0D5);
  flex-shrink: 0;
}
.pj-sh__mobile-brand {
  color: inherit;
  text-decoration: none;
}
.pj-sh__mobile-title {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--pj-sh-mobile-fg, #2C2C2C);
}
.pj-sh__mobile-close {
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.pj-sh__mobile-close svg { width: 20px; height: 20px; }
@media (hover: hover) {
  .pj-sh__mobile-close:hover { color: var(--pj-sh-mobile-accent, #C1694F); }
}
.pj-sh__mobile-close:focus-visible {
  outline: 2px solid var(--pj-sh-mobile-accent, #C1694F);
  outline-offset: 2px;
}
.pj-sh__mobile-search-wrap {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--pj-sh-mobile-border, #E5E0D5);
  flex-shrink: 0;
}
.pj-sh__mobile-search {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0 0.75rem;
  height: 40px;
  border: 1px solid var(--pj-sh-mobile-border, #E5E0D5);
  background-color: var(--pj-sh-search-bg, #FAF8F5);
  color: var(--pj-sh-mobile-muted, #717182);
  border-radius: 2px;
  text-align: left;
  text-decoration: none;
  font-size: 13px;
  font-style: italic;
  cursor: pointer;
}
.pj-sh__mobile-search svg {
  width: 16px;
  height: 16px;
  color: var(--pj-sh-mobile-accent, #C1694F);
  flex-shrink: 0;
}
.pj-sh__mobile-search:focus-visible {
  outline: 2px solid var(--pj-sh-mobile-accent, #C1694F);
  outline-offset: 2px;
}
.pj-sh__mobile-nav {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.pj-sh__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pj-sh__mobile-item {
  border-bottom: 1px solid var(--pj-sh-mobile-border, #E5E0D5);
}
.pj-sh__mobile-link,
.pj-sh__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--pj-sh-mobile-fg, #2C2C2C);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.pj-sh__mobile-link--sale,
.pj-sh__mobile-toggle--sale {
  color: var(--pj-sh-nav-fg-sale, #C1694F);
}
@media (hover: hover) {
  .pj-sh__mobile-link:hover,
  .pj-sh__mobile-toggle:hover {
    color: var(--pj-sh-mobile-accent, #C1694F);
    background-color: var(--pj-sh-mobile-link-hover-bg, #F0EDE5);
  }
}
.pj-sh__mobile-link:focus-visible,
.pj-sh__mobile-toggle:focus-visible {
  outline: 2px solid var(--pj-sh-mobile-accent, #C1694F);
  outline-offset: -2px;
}
.pj-sh__mobile-toggle[aria-expanded="true"] {
  color: var(--pj-sh-mobile-accent, #C1694F);
}
.pj-sh__mobile-toggle svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--pj-sh-mobile-muted, #717182);
  transition: transform 0.25s ease, color 0.2s ease;
}
.pj-sh__mobile-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: var(--pj-sh-mobile-accent, #C1694F);
}
/* Expandable content — animate max-height from 0 to a large ceiling */
.pj-sh__mobile-panel-content {
  max-height: 0;
  overflow: hidden;
  background-color: var(--pj-sh-mobile-link-hover-bg, #F0EDE5);
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.pj-sh__mobile-panel-content[data-expanded="true"] {
  max-height: 1600px;
}
.pj-sh__mobile-panel-inner {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pj-sh__mobile-section-heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--pj-sh-mobile-muted, #717182);
  line-height: 1;
}
/* Best sellers — 2-up grid of small product cards */
.pj-sh__mobile-bs-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}
.pj-sh__mobile-bs-item { margin: 0; }
.pj-sh__mobile-bs-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-decoration: none;
  color: var(--pj-sh-mobile-fg, #2C2C2C);
  border: 1px solid var(--pj-sh-mobile-border, #E5E0D5);
  background-color: var(--pj-sh-mobile-bg, #FAF8F5);
  padding: 0.5rem;
  border-radius: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__mobile-bs-card:hover {
    border-color: var(--pj-sh-mobile-accent, #C1694F);
    color: var(--pj-sh-mobile-accent, #C1694F);
  }
}
.pj-sh__mobile-bs-card:focus-visible {
  outline: 2px solid var(--pj-sh-mobile-accent, #C1694F);
  outline-offset: 2px;
}
.pj-sh__mobile-bs-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--pj-sh-mobile-link-hover-bg, #F0EDE5);
  line-height: 0;
}
.pj-sh__mobile-bs-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pj-sh__mobile-bs-img--placeholder {
  background: linear-gradient(135deg, var(--pj-sh-mobile-link-hover-bg, #F0EDE5), var(--pj-sh-mobile-border, #E5E0D5));
}
.pj-sh__mobile-bs-title {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}
/* Sublink list */
.pj-sh__mobile-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.pj-sh__mobile-sublink {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--pj-sh-mobile-fg, #2C2C2C);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pj-sh__mobile-sublink-label { line-height: 1.3; }
.pj-sh__mobile-sublink-badge {
  display: inline-flex;
  align-items: center;
  height: 14px;
  padding: 0 0.375rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background-color: var(--pj-sh-mobile-accent, #C1694F);
  color: var(--pj-sh-mobile-bg, #FAF8F5);
  border-radius: 0;
  line-height: 1;
  flex-shrink: 0;
}
@media (hover: hover) {
  .pj-sh__mobile-sublink:hover { color: var(--pj-sh-mobile-accent, #C1694F); }
}
.pj-sh__mobile-sublink:focus-visible {
  outline: 2px solid var(--pj-sh-mobile-accent, #C1694F);
  outline-offset: 2px;
}
/* Featured cards — vertical stack */
.pj-sh__mobile-featured-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pj-sh__mobile-featured-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--pj-sh-mobile-fg, #2C2C2C);
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__mobile-featured-card:hover { color: var(--pj-sh-mobile-accent, #C1694F); }
}
.pj-sh__mobile-featured-card:focus-visible {
  outline: 2px solid var(--pj-sh-mobile-accent, #C1694F);
  outline-offset: 2px;
}
.pj-sh__mobile-featured-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--pj-sh-mobile-link-hover-bg, #F0EDE5);
  line-height: 0;
  border-radius: 2px;
}
.pj-sh__mobile-featured-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pj-sh__mobile-featured-img--placeholder {
  background: linear-gradient(135deg, var(--pj-sh-mobile-link-hover-bg, #F0EDE5), var(--pj-sh-mobile-border, #E5E0D5));
}
.pj-sh__mobile-featured-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  height: 14px;
  padding: 0 0.375rem;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 0;
}
.pj-sh__mobile-featured-badge--new {
  background-color: var(--pj-sh-mega-badge-new-bg, #2D4A3E);
  color: var(--pj-sh-mega-badge-new-fg, #FAF8F5);
}
.pj-sh__mobile-featured-badge--bestseller {
  background-color: var(--pj-sh-mega-badge-bs-bg, #C1694F);
  color: var(--pj-sh-mega-badge-bs-fg, #FAF8F5);
}
.pj-sh__mobile-featured-badge--sale {
  background-color: var(--pj-sh-mega-badge-sale-bg, #C1694F);
  color: var(--pj-sh-mega-badge-sale-fg, #FAF8F5);
}
.pj-sh__mobile-featured-badge--popular {
  background-color: var(--pj-sh-mega-badge-pop-bg, #2C2C2C);
  color: var(--pj-sh-mega-badge-pop-fg, #FAF8F5);
}
.pj-sh__mobile-featured-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
/* Footer */
.pj-sh__mobile-footer {
  padding: 1.25rem 1.25rem 2rem;
  border-top: 1px solid var(--pj-sh-mobile-border, #E5E0D5);
  background-color: var(--pj-sh-mobile-bg, #FAF8F5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pj-sh__mobile-account {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pj-sh-mobile-fg, #2C2C2C);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.pj-sh__mobile-account svg {
  width: 18px;
  height: 18px;
  color: var(--pj-sh-mobile-accent, #C1694F);
}
@media (hover: hover) {
  .pj-sh__mobile-account:hover { color: var(--pj-sh-mobile-accent, #C1694F); }
}
.pj-sh__mobile-account:focus-visible {
  outline: 2px solid var(--pj-sh-mobile-accent, #C1694F);
  outline-offset: 2px;
}
.pj-sh__mobile-utility-heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--pj-sh-mobile-muted, #717182);
}
.pj-sh__mobile-utility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pj-sh__mobile-utility-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--pj-sh-mobile-fg, #2C2C2C);
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__mobile-utility-link:hover { color: var(--pj-sh-mobile-accent, #C1694F); }
}
.pj-sh__mobile-utility-link:focus-visible {
  outline: 2px solid var(--pj-sh-mobile-accent, #C1694F);
  outline-offset: 2px;
}

/* ── Cart drawer ── */
.pj-sh__cart-badge--hidden { display: none !important; }

.pj-sh__cart {
  position: fixed;
  inset: 0;
  z-index: var(--pj-sh-cart-z, 70);
  pointer-events: none;
}
.pj-sh__cart.is-open { pointer-events: auto; }
.pj-sh__cart[hidden] { display: none; }
.pj-sh__cart-backdrop {
  position: absolute;
  inset: 0;
  background-color: var(--pj-sh-cart-backdrop, #1A1A1A);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pj-sh__cart.is-open .pj-sh__cart-backdrop { opacity: 0.45; }
.pj-sh__cart-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(420px, 95vw);
  background-color: var(--pj-sh-cart-bg, #FAF8F5);
  color: var(--pj-sh-cart-fg, #2C2C2C);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
}
.pj-sh__cart--right .pj-sh__cart-panel {
  right: 0;
  left: auto;
  transform: translateX(100%);
  box-shadow: -6px 0 40px rgba(0, 0, 0, 0.18);
}
.pj-sh__cart--left .pj-sh__cart-panel {
  left: 0;
  right: auto;
  transform: translateX(-100%);
  box-shadow: 6px 0 40px rgba(0, 0, 0, 0.18);
}
.pj-sh__cart.is-open .pj-sh__cart-panel { transform: translateX(0); }

.pj-sh__cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 1.5rem;
  height: 64px;
  border-bottom: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  flex-shrink: 0;
}
.pj-sh__cart-head-title {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}
.pj-sh__cart-title {
  margin: 0;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  line-height: 1;
}
.pj-sh__cart-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pj-sh-cart-muted, #717182);
}
.pj-sh__cart-count--hidden { display: none; }
.pj-sh__cart-close {
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: color 0.2s ease;
}
.pj-sh__cart-close svg { width: 20px; height: 20px; }
@media (hover: hover) {
  .pj-sh__cart-close:hover { color: var(--pj-sh-cart-progress-fill, #C1694F); }
}
.pj-sh__cart-close:focus-visible {
  outline: 2px solid var(--pj-sh-cart-progress-fill, #C1694F);
  outline-offset: 2px;
}

/* Free shipping progress */
.pj-sh__cart-progress {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  flex-shrink: 0;
  background-color: var(--pj-sh-cart-bg, #FAF8F5);
}
.pj-sh__cart-progress--hidden { display: none; }
.pj-sh__cart-progress-msg {
  margin: 0 0 0.5rem;
  font-size: 11px;
  font-weight: 500;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  opacity: 0.85;
  line-height: 1.4;
}
.pj-sh__cart-progress-msg--earned {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--pj-sh-cart-progress-fill, #C1694F);
  opacity: 1;
}
.pj-sh__cart-progress-check {
  flex-shrink: 0;
  display: block;
}
.pj-sh__cart-progress-track {
  width: 100%;
  height: 4px;
  background-color: var(--pj-sh-cart-progress-bg, #E5E0D5);
  border-radius: 999px;
  overflow: hidden;
}
.pj-sh__cart-progress-fill {
  height: 100%;
  background-color: var(--pj-sh-cart-progress-fill, #C1694F);
  border-radius: 999px;
  transition: width 0.4s ease;
}

/* Body */
.pj-sh__cart-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.25rem 1.5rem;
}
.pj-sh__cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pj-sh__cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--pj-sh-cart-border, #E5E0D5);
}
.pj-sh__cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.pj-sh__cart-item-img-link {
  display: block;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  border-radius: 2px;
  background-color: var(--pj-sh-cart-progress-bg, #F1ECE3);
}
.pj-sh__cart-item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pj-sh__cart-item-img--placeholder { background-color: var(--pj-sh-cart-border, #E5E0D5); }
.pj-sh__cart-item-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}
.pj-sh__cart-item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.pj-sh__cart-item-link {
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1 1 auto;
}
.pj-sh__cart-item-title {
  margin: 0;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__cart-item-link:hover .pj-sh__cart-item-title {
    color: var(--pj-sh-cart-progress-fill, #C1694F);
  }
}
.pj-sh__cart-item-link:focus-visible {
  outline: 2px solid var(--pj-sh-cart-progress-fill, #C1694F);
  outline-offset: 2px;
}
.pj-sh__cart-item-remove {
  background: transparent;
  border: 0;
  padding: 2px;
  cursor: pointer;
  color: var(--pj-sh-cart-muted, #717182);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.pj-sh__cart-item-remove svg { width: 14px; height: 14px; }
@media (hover: hover) {
  .pj-sh__cart-item-remove:hover { color: var(--pj-sh-cart-remove, #B52025); }
}
.pj-sh__cart-item-remove:focus-visible {
  outline: 2px solid var(--pj-sh-cart-remove, #B52025);
  outline-offset: 2px;
  color: var(--pj-sh-cart-remove, #B52025);
}
.pj-sh__cart-item-variant {
  margin: 0;
  font-size: 11px;
  color: var(--pj-sh-cart-muted, #717182);
  line-height: 1.3;
}
.pj-sh__cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.25rem;
}
.pj-sh__cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  border-radius: 2px;
  overflow: hidden;
  height: 28px;
}
.pj-sh__cart-qty-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  opacity: 0.7;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}
.pj-sh__cart-qty-btn svg { width: 11px; height: 11px; }
@media (hover: hover) {
  .pj-sh__cart-qty-btn:hover {
    opacity: 1;
    background-color: var(--pj-sh-cart-progress-bg, #E5E0D5);
  }
}
.pj-sh__cart-qty-btn:focus-visible {
  opacity: 1;
  outline: 2px solid var(--pj-sh-cart-progress-fill, #C1694F);
  outline-offset: -2px;
}
.pj-sh__cart-qty-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.pj-sh__cart-qty-val {
  min-width: 30px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  border-left: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  border-right: 1px solid var(--pj-sh-cart-border, #E5E0D5);
}
.pj-sh__cart-item-price {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--pj-sh-cart-fg, #2C2C2C);
}

/* Empty state */
.pj-sh__cart-empty {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-block: 0.25rem 1rem;
}
.pj-sh__cart-empty-title {
  margin: 0 0 0.125rem;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  line-height: 1.2;
}
.pj-sh__cart-empty-sub {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  line-height: 1.2;
}
.pj-sh__cart-empty-heading {
  margin: 0 0 0.625rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pj-sh-cart-muted, #717182);
}
.pj-sh__cart-empty-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pj-sh__cart-empty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  border-radius: 4px;
  text-decoration: none;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  background-color: var(--pj-sh-cart-bg, #FAF8F5);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__cart-empty-row:hover {
    border-color: var(--pj-sh-cart-progress-fill, #C1694F);
    background-color: color-mix(in srgb, var(--pj-sh-cart-progress-fill, #C1694F) 6%, var(--pj-sh-cart-bg, #FAF8F5));
  }
}
.pj-sh__cart-empty-row:focus-visible {
  outline: 2px solid var(--pj-sh-cart-progress-fill, #C1694F);
  outline-offset: 2px;
}
.pj-sh__cart-empty-row[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}
.pj-sh__cart-empty-thumb {
  flex-shrink: 0;
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
  background-color: var(--pj-sh-cart-border, #E5E0D5);
}
.pj-sh__cart-empty-thumb--placeholder {
  display: block;
}
.pj-sh__cart-empty-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: inherit;
}
.pj-sh__cart-empty-shop-all {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  border-radius: 4px;
  background-color: transparent;
  color: var(--pj-sh-cart-fg, #2C2C2C);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__cart-empty-shop-all:hover {
    border-color: var(--pj-sh-cart-fg, #2C2C2C);
    background-color: var(--pj-sh-cart-fg, #2C2C2C);
    color: var(--pj-sh-cart-bg, #FAF8F5);
  }
}
.pj-sh__cart-empty-shop-all:focus-visible {
  outline: 2px solid var(--pj-sh-cart-progress-fill, #C1694F);
  outline-offset: 2px;
}

/* Footer */
.pj-sh__cart-foot {
  flex-shrink: 0;
  border-top: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background-color: var(--pj-sh-cart-bg, #FAF8F5);
}
.pj-sh__cart-foot--hidden { display: none; }
.pj-sh__cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pj-sh__cart-subtotal-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pj-sh-cart-muted, #717182);
}
.pj-sh__cart-subtotal-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--pj-sh-cart-fg, #2C2C2C);
}
.pj-sh__cart-taxes-note {
  margin: 0;
  font-size: 11px;
  color: var(--pj-sh-cart-muted, #717182);
  line-height: 1.4;
}
.pj-sh__cart-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 48px;
  margin-top: 0.25rem;
  background-color: var(--pj-sh-cart-checkout-bg, #2D4A3E);
  color: var(--pj-sh-cart-checkout-fg, #FAF8F5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}
.pj-sh__cart-checkout svg { width: 15px; height: 15px; }
@media (hover: hover) {
  .pj-sh__cart-checkout:hover {
    background-color: var(--pj-sh-cart-checkout-bg-hover, #1F3329);
  }
}
.pj-sh__cart-checkout:focus-visible {
  outline: 2px solid var(--pj-sh-cart-progress-fill, #C1694F);
  outline-offset: 2px;
}
.pj-sh__cart-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: transparent;
  border: 1px solid var(--pj-sh-cart-border, #E5E0D5);
  color: var(--pj-sh-cart-fg, #2C2C2C);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  opacity: 0.8;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .pj-sh__cart-view:hover {
    opacity: 1;
    border-color: var(--pj-sh-cart-progress-fill, #C1694F);
    color: var(--pj-sh-cart-progress-fill, #C1694F);
  }
}
.pj-sh__cart-view:focus-visible {
  outline: 2px solid var(--pj-sh-cart-progress-fill, #C1694F);
  outline-offset: 2px;
}

/* Loading shimmer while AJAX in flight */
.pj-sh__cart-panel[aria-busy="true"] .pj-sh__cart-body {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

/* ──────────────────────────────────────────────────────────────────────────
   Cart "Pairs Well With" upsell carousel (Phase 2.5)
   ────────────────────────────────────────────────────────────────────────── */

.pj-sh__cart-upsell {
  /* Cancel cart-body's 1.5rem (24px) horizontal padding so the carousel reaches the panel edges */
  margin: 1rem -1.5rem 0;
  padding: 16px 0 8px;
  border-top: 1px solid var(--pj-sh-cart-upsell-border, var(--pj-sh-cart-border, #E5E0D5));
  background-color: transparent;
}
.pj-sh__cart-upsell-heading {
  font-family: var(--font-heading, Georgia, 'Times New Roman', serif);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25;
  color: var(--pj-sh-cart-upsell-fg, var(--pj-sh-cart-fg, #2C2C2C));
  margin: 0 0 12px;
  padding: 0 1.5rem;
}
.pj-sh__cart-upsell-carousel {
  position: relative;
}
.pj-sh__cart-upsell-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--pj-sh-cart-upsell-nav-bg, #FFFFFF);
  border: 1px solid var(--pj-sh-cart-upsell-nav-border, var(--pj-sh-cart-upsell-border, #E5E0D5));
  color: var(--pj-sh-cart-upsell-nav-icon, var(--pj-sh-cart-upsell-fg, #2C2C2C));
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.pj-sh__cart-upsell-nav svg {
  width: 14px;
  height: 14px;
}
.pj-sh__cart-upsell-nav--prev { left: 12px; }
.pj-sh__cart-upsell-nav--next { right: 12px; }
.pj-sh__cart-upsell-nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (hover: hover) {
  .pj-sh__cart-upsell-nav:not(.is-disabled):hover {
    border-color: var(--pj-sh-cart-upsell-fg, #2C2C2C);
    color: var(--pj-sh-cart-upsell-fg, #2C2C2C);
  }
}
.pj-sh__cart-upsell-nav:focus-visible {
  outline: 2px solid var(--pj-sh-cart-upsell-accent, var(--pj-sh-cart-progress-fill, #C1694F));
  outline-offset: 2px;
}
.pj-sh__cart-upsell-track {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem 4px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.pj-sh__cart-upsell-track::-webkit-scrollbar {
  display: none;
}
.pj-sh__cart-upsell-card {
  flex: 0 0 auto;
  width: var(--pj-sh-cart-upsell-card-w, 295px);
  scroll-snap-align: start;
  display: flex;
  gap: 10px;
  padding: 10px 8px;
  border: 1px solid var(--pj-sh-cart-upsell-border, var(--pj-sh-cart-border, #E5E0D5));
  border-radius: 4px;
  background-color: var(--pj-sh-cart-upsell-bg, #FFFFFF);
}
.pj-sh__cart-upsell-img-link {
  flex: 0 0 auto;
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 2px;
  overflow: hidden;
  background-color: var(--pj-sh-cart-upsell-border, #E5E0D5);
}
.pj-sh__cart-upsell-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pj-sh__cart-upsell-img--placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--pj-sh-cart-upsell-border, #E5E0D5);
}
.pj-sh__cart-upsell-info {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}
.pj-sh__cart-upsell-text {
  min-width: 0;
}
.pj-sh__cart-upsell-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: color 0.15s ease;
}
.pj-sh__cart-upsell-title-link:focus-visible {
  outline: 2px solid var(--pj-sh-cart-upsell-accent, var(--pj-sh-cart-progress-fill, #C1694F));
  outline-offset: 2px;
  border-radius: 2px;
}
@media (hover: hover) {
  .pj-sh__cart-upsell-title-link:hover .pj-sh__cart-upsell-title {
    color: var(--pj-sh-cart-upsell-accent, var(--pj-sh-cart-progress-fill, #C1694F));
  }
}
.pj-sh__cart-upsell-title {
  font-family: var(--font-heading, Georgia, 'Times New Roman', serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--pj-sh-cart-upsell-fg, #2C2C2C);
  margin: 0;
  transition: color 0.15s ease;
  /* Allow up to 2 lines, truncate */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pj-sh__cart-upsell-desc {
  font-size: 11px;
  line-height: 1.35;
  color: var(--pj-sh-cart-upsell-muted, var(--pj-sh-cart-muted, #717182));
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pj-sh__cart-upsell-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}
.pj-sh__cart-upsell-prices {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.pj-sh__cart-upsell-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--pj-sh-cart-upsell-accent, var(--pj-sh-cart-progress-fill, #C1694F));
  line-height: 1;
}
.pj-sh__cart-upsell-price--sale {
  color: var(--pj-sh-cart-remove, #B52025);
}
.pj-sh__cart-upsell-compare {
  font-size: 12px;
  line-height: 1;
  color: var(--pj-sh-cart-upsell-muted, var(--pj-sh-cart-muted, #717182));
  text-decoration: line-through;
}
.pj-sh__cart-upsell-add {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pj-sh-cart-upsell-add-fg, #FAF8F5);
  background-color: var(--pj-sh-cart-upsell-add-bg, #2C2C2C);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
@media (hover: hover) {
  .pj-sh__cart-upsell-add:not([disabled]):not(.is-error):hover {
    background-color: var(--pj-sh-cart-upsell-add-bg-hover, var(--pj-sh-cart-upsell-accent, #C1694F));
  }
}
.pj-sh__cart-upsell-add:focus-visible {
  outline: 2px solid var(--pj-sh-cart-upsell-accent, var(--pj-sh-cart-progress-fill, #C1694F));
  outline-offset: 2px;
}
.pj-sh__cart-upsell-add[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.pj-sh__cart-upsell-add.is-loading {
  opacity: 0.65;
  pointer-events: none;
}
.pj-sh__cart-upsell-add.is-error {
  background-color: var(--pj-sh-cart-remove, #B52025);
  color: #FFFFFF;
}

/* ──────────────────────────────────────────────────────────────────────────
   Search overlay (Phase 3)
   ────────────────────────────────────────────────────────────────────────── */

.pj-sh__search {
  position: fixed;
  inset: 0;
  z-index: var(--pj-sh-search-z, 75);
  pointer-events: none;
}

.pj-sh__search[aria-hidden='false'] {
  pointer-events: auto;
}

.pj-sh__search-backdrop {
  position: absolute;
  inset: 0;
  background-color: var(--pj-sh-search-overlay-backdrop, #10140E);
  opacity: 0;
  transition: opacity 0.22s ease;
  cursor: pointer;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.pj-sh__search.is-open .pj-sh__search-backdrop {
  opacity: 0.45;
}

.pj-sh__search-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--pj-sh-search-overlay-bg, #FFFFFF);
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  border: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.pj-sh__search.is-open .pj-sh__search-panel {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .pj-sh__search-panel {
    inset: auto;
    top: 56px;
    left: 50%;
    transform: translate(-50%, -12px);
    width: calc(100% - 48px);
    max-width: 720px;
    max-height: calc(100vh - 96px);
    border-radius: 6px;
    border: 1px solid var(--pj-sh-search-overlay-border, #E5E0D5);
    box-shadow: 0 24px 60px rgba(20, 20, 20, 0.22);
  }
  .pj-sh__search.is-open .pj-sh__search-panel {
    transform: translate(-50%, 0);
  }
}

.pj-sh__search-input-row {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background-color: var(--pj-sh-search-overlay-bg, #FFFFFF);
  border-bottom: 1px solid var(--pj-sh-search-overlay-border, #E5E0D5);
  z-index: 1;
}

@media (min-width: 768px) {
  .pj-sh__search-input-row {
    padding: 16px 24px;
  }
}

.pj-sh__search-input-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--pj-sh-search-overlay-muted, #717182);
}

.pj-sh__search-input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  padding: 4px 0;
  -webkit-appearance: none;
  appearance: none;
}

.pj-sh__search-input::placeholder {
  color: var(--pj-sh-search-overlay-muted, #717182);
  font-weight: 400;
}

.pj-sh__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.pj-sh__search-cancel {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.15s ease, color 0.15s ease;
}

@media (hover: hover) {
  .pj-sh__search-cancel:hover {
    opacity: 1;
    color: var(--pj-sh-search-overlay-accent, #C1694F);
  }
}

.pj-sh__search-cancel:focus-visible {
  outline: 2px solid var(--pj-sh-search-overlay-accent, #C1694F);
  outline-offset: 2px;
  opacity: 1;
}

.pj-sh__search-cancel svg {
  width: 20px;
  height: 20px;
}

.pj-sh__search-idle,
.pj-sh__search-results {
  padding: 20px;
}

@media (min-width: 768px) {
  .pj-sh__search-idle,
  .pj-sh__search-results {
    padding: 24px;
  }
}

.pj-sh__search-section {
  margin: 0 0 22px 0;
}

.pj-sh__search-section:last-child {
  margin-bottom: 0;
}

.pj-sh__search-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pj-sh__search-section-label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pj-sh-search-overlay-muted, #717182);
}

.pj-sh__search-clear {
  background: transparent;
  border: 0;
  color: var(--pj-sh-search-overlay-accent, #C1694F);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 3px;
  transition: opacity 0.15s ease;
}

@media (hover: hover) {
  .pj-sh__search-clear:hover { opacity: 0.75; }
}

.pj-sh__search-clear:focus-visible {
  outline: 2px solid var(--pj-sh-search-overlay-accent, #C1694F);
  outline-offset: 2px;
}

/* Recent searches — pill list */
.pj-sh__search-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pj-sh__search-recent-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--pj-sh-search-overlay-chip-bg, #F5F1EC);
  color: var(--pj-sh-search-overlay-chip-fg, #2C2C2C);
  border: 1px solid var(--pj-sh-search-overlay-border, #E5E0D5);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

@media (hover: hover) {
  .pj-sh__search-recent-pill:hover {
    background-color: var(--pj-sh-search-overlay-chip-hover-bg, #E5E0D5);
  }
}

.pj-sh__search-recent-pill:focus-visible {
  outline: 2px solid var(--pj-sh-search-overlay-accent, #C1694F);
  outline-offset: 2px;
}

/* Popular categories — chips */
.pj-sh__search-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pj-sh__search-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--pj-sh-search-overlay-chip-bg, #F5F1EC);
  color: var(--pj-sh-search-overlay-chip-fg, #2C2C2C);
  border: 1px solid var(--pj-sh-search-overlay-border, #E5E0D5);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.pj-sh__search-chip:not(:has(.pj-sh__search-chip-img)) {
  padding-left: 14px;
}

@media (hover: hover) {
  .pj-sh__search-chip:hover {
    background-color: var(--pj-sh-search-overlay-chip-hover-bg, #E5E0D5);
    border-color: var(--pj-sh-search-overlay-accent, #C1694F);
  }
}

.pj-sh__search-chip:focus-visible {
  outline: 2px solid var(--pj-sh-search-overlay-accent, #C1694F);
  outline-offset: 2px;
}

.pj-sh__search-chip-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.pj-sh__search-chip-label {
  white-space: nowrap;
}

/* Trending / recently viewed grid — 3-up on desktop, 2-up on mobile */
.pj-sh__search-trending-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 600px) {
  .pj-sh__search-trending-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pj-sh__search-product {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  border-radius: 4px;
  padding: 4px;
  margin: -4px;
  transition: background-color 0.15s ease;
}

@media (hover: hover) {
  .pj-sh__search-product:hover {
    background-color: var(--pj-sh-search-overlay-chip-bg, #F5F1EC);
  }
  .pj-sh__search-product:hover .pj-sh__search-product-img {
    transform: scale(1.04);
  }
  .pj-sh__search-product:hover .pj-sh__search-product-title {
    color: var(--pj-sh-search-overlay-accent, #C1694F);
  }
}

.pj-sh__search-product:focus-visible {
  outline: 2px solid var(--pj-sh-search-overlay-accent, #C1694F);
  outline-offset: 2px;
}

.pj-sh__search-product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--pj-sh-search-overlay-chip-bg, #F5F1EC);
  border: 1px solid var(--pj-sh-search-overlay-border, #E5E0D5);
}

.pj-sh__search-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pj-sh__search-product-img--placeholder {
  background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.08));
}

.pj-sh__search-product-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pj-sh__search-product-title {
  margin: 0;
  font-family: var(--font-heading, 'EB Garamond', Georgia, serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.pj-sh__search-product-price {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.pj-sh__search-product-price-was {
  font-weight: 400;
  text-decoration: line-through;
  color: var(--pj-sh-search-overlay-muted, #717182);
}

.pj-sh__search-product-price-current {
  color: var(--pj-sh-search-overlay-accent, #C1694F);
}

/* Results state */
.pj-sh__search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 768px) {
  .pj-sh__search-results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pj-sh__search-result-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pj-sh__search-result-col .pj-sh__search-section-label {
  margin: 0 0 6px 0;
}

.pj-sh__search-result-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pj-sh__search-result-product {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  padding: 6px;
  margin: -6px;
  border-radius: 4px;
  transition: background-color 0.15s ease;
  align-items: center;
}

@media (hover: hover) {
  .pj-sh__search-result-product:hover {
    background-color: var(--pj-sh-search-overlay-chip-bg, #F5F1EC);
  }
  .pj-sh__search-result-product:hover .pj-sh__search-result-product-title {
    color: var(--pj-sh-search-overlay-accent, #C1694F);
  }
}

.pj-sh__search-result-product:focus-visible {
  outline: 2px solid var(--pj-sh-search-overlay-accent, #C1694F);
  outline-offset: 2px;
}

.pj-sh__search-result-product-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
  background-color: var(--pj-sh-search-overlay-chip-bg, #F5F1EC);
  border: 1px solid var(--pj-sh-search-overlay-border, #E5E0D5);
  flex-shrink: 0;
}

.pj-sh__search-result-product-img--placeholder {
  background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.08));
}

.pj-sh__search-result-product-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pj-sh__search-result-product-title {
  margin: 0;
  font-family: var(--font-heading, 'EB Garamond', Georgia, serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.pj-sh__search-result-product-price {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
}

.pj-sh__search-result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pj-sh__search-result-link {
  display: block;
  text-decoration: none;
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

@media (hover: hover) {
  .pj-sh__search-result-link:hover {
    background-color: var(--pj-sh-search-overlay-chip-bg, #F5F1EC);
    color: var(--pj-sh-search-overlay-accent, #C1694F);
  }
}

.pj-sh__search-result-link:focus-visible {
  outline: 2px solid var(--pj-sh-search-overlay-accent, #C1694F);
  outline-offset: 2px;
}

.pj-sh__search-empty {
  margin: 8px 0 16px 0;
  font-size: 14px;
  color: var(--pj-sh-search-overlay-muted, #717182);
  text-align: center;
}

.pj-sh__search-view-all {
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 12px 16px;
  background-color: var(--pj-sh-search-overlay-chip-bg, #F5F1EC);
  border: 1px solid var(--pj-sh-search-overlay-border, #E5E0D5);
  color: var(--pj-sh-search-overlay-fg, #2C2C2C);
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

@media (hover: hover) {
  .pj-sh__search-view-all:hover {
    background-color: var(--pj-sh-search-overlay-chip-hover-bg, #E5E0D5);
    border-color: var(--pj-sh-search-overlay-accent, #C1694F);
    color: var(--pj-sh-search-overlay-accent, #C1694F);
  }
}

.pj-sh__search-view-all:focus-visible {
  outline: 2px solid var(--pj-sh-search-overlay-accent, #C1694F);
  outline-offset: 2px;
}

.pj-sh__search-hint {
  margin: 0;
  padding: 12px 20px 18px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--pj-sh-search-overlay-muted, #717182);
  text-align: center;
  border-top: 1px solid var(--pj-sh-search-overlay-border, #E5E0D5);
  background-color: var(--pj-sh-search-overlay-bg, #FFFFFF);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .pj-sh--sticky,
  .pj-sh__topbar-inner,
  .pj-sh__logo-img,
  .pj-sh__logo-svg,
  .pj-sh__nav-inner,
  .pj-sh__nav-link,
  .pj-sh__nav-chevron,
  .pj-sh__nav-underline,
  .pj-sh__mega,
  .pj-sh__mega-bs-card,
  .pj-sh__mega-bs-img,
  .pj-sh__mega-bs-title,
  .pj-sh__mega-card-img,
  .pj-sh__mega-card-title,
  .pj-sh__mega-card-cta,
  .pj-sh__mobile-backdrop,
  .pj-sh__mobile-panel,
  .pj-sh__mobile-panel-content,
  .pj-sh__mobile-toggle svg,
  .pj-sh__mobile-bs-card,
  .pj-sh__mobile-featured-card,
  .pj-sh__mobile-account,
  .pj-sh__mobile-close,
  .pj-sh__icon-btn,
  .pj-sh__search-trigger,
  .pj-sh__utility-link,
  .pj-sh__mega-link,
  .pj-sh__mobile-link,
  .pj-sh__mobile-toggle,
  .pj-sh__mobile-sublink,
  .pj-sh__mobile-utility-link,
  .pj-sh__cart-backdrop,
  .pj-sh__cart-panel,
  .pj-sh__cart-progress-fill,
  .pj-sh__cart-close,
  .pj-sh__cart-qty-btn,
  .pj-sh__cart-item-remove,
  .pj-sh__cart-checkout,
  .pj-sh__cart-view,
  .pj-sh__cart-empty-card,
  .pj-sh__cart-item-title,
  .pj-sh__cart-upsell-nav,
  .pj-sh__cart-upsell-title,
  .pj-sh__cart-upsell-title-link,
  .pj-sh__cart-upsell-add,
  .pj-sh__cart-upsell-track,
  .pj-sh__search-backdrop,
  .pj-sh__search-panel,
  .pj-sh__search-cancel,
  .pj-sh__search-clear,
  .pj-sh__search-recent-pill,
  .pj-sh__search-chip,
  .pj-sh__search-product,
  .pj-sh__search-product-img,
  .pj-sh__search-product-title,
  .pj-sh__search-result-product,
  .pj-sh__search-result-product-title,
  .pj-sh__search-result-link,
  .pj-sh__search-view-all {
    transition: none !important;
  }
}
/* END_SECTION:pj_siteheader */

/* START_SECTION:pj_subcategorycardgrid (INDEX:24) */
.subcategory-grid-transactional {
  background: var(--sgt-bg, #faf8f5);
  color: var(--sgt-text, #2c2c2c);
  padding-block: var(--sgt-padding-block, 80px);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  border-top: 1px solid var(--sgt-border, rgba(0, 0, 0, 0.08));
}

.subcategory-grid-transactional__inner {
  max-width: 1152px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.subcategory-grid-transactional__header {
  text-align: center;
  margin-block-end: 40px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.subcategory-grid-transactional__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sgt-muted, #717182);
  margin: 0;
}

.subcategory-grid-transactional__heading {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--sgt-text, #2c2c2c);
  margin: 0;
  max-width: 36ch;
}

.subcategory-grid-transactional__rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subcategory-grid-transactional__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .subcategory-grid-transactional__row {
    grid-template-columns: repeat(var(--sgt-row-cols, 2), minmax(0, 1fr));
  }
}

/* Opt-in: turn the second row into a horizontal-scroll strip on mobile only.
   Above 768px the grid layout above takes over (no special treatment needed). */
@media (max-width: 767px) {
  .subcategory-grid-transactional__row--scroll-mobile {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-inline: calc(-1 * clamp(20px, 5vw, 32px));
    padding-inline: clamp(20px, 5vw, 32px);
    scroll-padding-inline-start: clamp(20px, 5vw, 32px);
    scrollbar-width: none;
  }

  .subcategory-grid-transactional__row--scroll-mobile::-webkit-scrollbar {
    display: none;
  }

  .subcategory-grid-transactional__row--scroll-mobile > .sgt-card {
    flex: 0 0 var(--sgt-mobile-card-w, 78%);
    scroll-snap-align: start;
  }
}

.subcategory-grid-transactional__empty {
  text-align: center;
  color: var(--sgt-muted, #717182);
  font-size: 14px;
  margin: 0;
  padding: 40px 0;
}

.sgt-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--sgt-card-bg, #ffffff);
  border: 1px solid var(--sgt-border, rgba(0, 0, 0, 0.08));
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
  /* Only transition transform here. The box-shadow snaps between hover states
     because transitioning shadow forces per-frame paint of the blurred filter
     on every visible card (up to 8 cards × hover frames). */
  transition: transform 300ms ease-out;
  animation: sgt-card-in 700ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--sgt-delay, 0ms) both;
}

@media (prefers-reduced-motion: reduce) {
  .sgt-card {
    animation: none;
    transition: none;
  }
}

@keyframes sgt-card-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) {
  .sgt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.1);
  }

  @media (prefers-reduced-motion: reduce) {
    .sgt-card:hover {
      transform: none;
    }
  }
}

.sgt-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.1);
  outline: 2px solid var(--sgt-primary, #2d4a3e);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .sgt-card:focus-visible {
    transform: none;
  }
}

.sgt-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f1ec;
}

.sgt-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 14s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sgt-card__image {
    transform: none;
    transition: none;
  }
}

@media (hover: hover) {
  .sgt-card:hover .sgt-card__image {
    transform: scale(1.08) translate(-1%, -1%);
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  @media (prefers-reduced-motion: reduce) {
    .sgt-card:hover .sgt-card__image {
      transform: none;
      transition: none;
    }
  }
}

.sgt-card:focus-visible .sgt-card__image {
  transform: scale(1.08) translate(-1%, -1%);
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .sgt-card:focus-visible .sgt-card__image {
    transform: none;
    transition: none;
  }
}

.sgt-card__image--placeholder {
  background: var(--sgt-border, rgba(0, 0, 0, 0.08));
  transform: none;
  transition: none;
}

.sgt-card__scrim {
  position: absolute;
  inset: 0;
  background: var(--sgt-foreground, #2c2c2c);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

@media (hover: hover) {
  .sgt-card:hover .sgt-card__scrim {
    opacity: 0.22;
  }
}

.sgt-card:focus-visible .sgt-card__scrim {
  opacity: 0.22;
}

.sgt-card__count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--sgt-foreground, #2c2c2c) 80%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--sgt-bg, #faf8f5);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.sgt-card__count-dot {
  position: relative;
  width: 6px;
  height: 6px;
  background: var(--sgt-bg, #faf8f5);
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

/* Pulse via a composited transform+opacity pseudo so we don't repaint the
   parent's box-shadow every frame on every visible card. */
.sgt-card__count-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: scale(0.8);
  animation: sgt-pulse-dot 2s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .sgt-card__count-dot::after {
    animation: none;
    opacity: 0;
  }
}

@keyframes sgt-pulse-dot {
  0%, 100% { opacity: 0;    transform: scale(0.8); }
  50%      { opacity: 0.65; transform: scale(1.2); }
}

.sgt-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 20px 24px 28px;
}

.sgt-card__category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sgt-muted, #717182);
  line-height: 1;
}

.sgt-card__divider {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block: 14px;
}

.sgt-card__divider-line {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--sgt-border, rgba(0, 0, 0, 0.18));
}

.sgt-card__divider-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--sgt-muted, #717182);
}

.sgt-card__headline {
  font-family: var(--font-heading, 'EB Garamond', serif);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--sgt-text, #2c2c2c);
  flex: 1;
  margin: 0 0 20px;
  max-width: 22ch;
}

.sgt-card__cta {
  display: block;
  width: 100%;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 24px;
  text-align: center;
  background: var(--sgt-primary, #2d4a3e);
  color: var(--sgt-primary-fg, #faf8f5);
  transition: background-color 250ms ease, color 250ms ease, transform 250ms ease;
}

@media (hover: hover) {
  .sgt-card:hover .sgt-card__cta {
    background: var(--sgt-foreground, #2c2c2c);
    color: var(--sgt-foreground-fg, #faf8f5);
    transform: translateY(-1px);
  }

  @media (prefers-reduced-motion: reduce) {
    .sgt-card:hover .sgt-card__cta {
      transform: none;
    }
  }
}

.sgt-card:focus-visible .sgt-card__cta {
  background: var(--sgt-foreground, #2c2c2c);
  color: var(--sgt-foreground-fg, #faf8f5);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .sgt-card:focus-visible .sgt-card__cta {
    transform: none;
  }
}
/* END_SECTION:pj_subcategorycardgrid */

/* START_SECTION:pj_subcategorygridoverlay (INDEX:25) */
.pj-sgo {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: var(--pj-sgo-bg, #FAF8F5);
  padding: var(--pj-sgo-pad-y-mobile, 80px) 0;
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-sgo {
    padding: var(--pj-sgo-pad-y-desktop, 80px) 0;
  }
}

.pj-sgo__inner {
  width: 100%;
  max-width: var(--pj-sgo-max-width, 1320px);
  margin: 0 auto;
  padding: 0 var(--pj-sgo-pad-x-mobile, 24px);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-sgo__inner {
    padding: 0 var(--pj-sgo-pad-x-desktop, 56px);
  }
}

/* === Section label === */
.pj-sgo__label {
  font-family: var(--pj-sgo-label-font, var(--font-body, 'Rubik', system-ui, sans-serif));
  font-size: var(--pj-sgo-label-size, 9px);
  text-transform: uppercase;
  letter-spacing: var(--pj-sgo-label-tracking, 0.28em);
  font-weight: var(--pj-sgo-label-weight, 500);
  font-style: var(--pj-sgo-label-style, normal);
  color: var(--pj-sgo-label, #717182);
  margin: 0 0 2rem;
}

/* === Grid === */
.pj-sgo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pj-sgo-tile-gap, 12px);
}

@media (min-width: 1024px) {
  .pj-sgo__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* === Tile (shared) === */
.pj-sgo__tile {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.pj-sgo__tile:focus-visible {
  outline: 2px solid var(--pj-sgo-eyebrow, #D2A16A);
  outline-offset: -2px;
}

.pj-sgo__tile-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pj-sgo__tile-img--placeholder {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

@media (hover: hover) {
  .pj-sgo__tile:hover .pj-sgo__tile-img {
    transform: scale(1.06);
  }
}

/* === Gradient overlays === */
.pj-sgo__tile-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pj-sgo__tile-gradient--featured {
  background: linear-gradient(
    to top,
    rgba(20, 24, 20, 0.88) 0%,
    rgba(20, 24, 20, 0.45) 38%,
    transparent 68%
  );
}

.pj-sgo__tile-gradient--stacked {
  background: linear-gradient(
    to top,
    rgba(20, 24, 20, 0.90) 0%,
    rgba(20, 24, 20, 0.30) 50%,
    transparent 75%
  );
}

/* === Featured accent bar === */
.pj-sgo__tile-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--pj-sgo-accent, #C35330);
  pointer-events: none;
}

/* === Text wrapper (base) === */
.pj-sgo__tile-text {
  position: absolute;
}

/* === Eyebrow (base) === */
.pj-sgo__eyebrow {
  display: inline-block;
}

/* === Name (base) === */
.pj-sgo__name {
  display: block;
}

/* === Featured tile === */
.pj-sgo__tile--featured {
  aspect-ratio: var(--pj-sgo-featured-aspect, 3 / 4);
  min-height: var(--pj-sgo-featured-min-mobile, 0);
}

@media (min-width: 1024px) {
  .pj-sgo__tile--featured {
    min-height: 0;
  }
}

.pj-sgo__tile--featured:only-child {
  grid-column: 1 / -1;
}

.pj-sgo__tile-text--featured {
  position: absolute;
  bottom: 2rem;
  left: 1.75rem;
  right: 1.75rem;
}

.pj-sgo__eyebrow--featured {
  display: inline-block;
  font-size: var(--pj-sgo-featured-eyebrow-size, 9px);
  text-transform: uppercase;
  letter-spacing: var(--pj-sgo-featured-eyebrow-tracking, 0.16em);
  font-weight: var(--pj-sgo-featured-eyebrow-weight, 500);
  font-style: var(--pj-sgo-featured-eyebrow-style, normal);
  color: var(--pj-sgo-eyebrow, #D2A16A);
  margin-bottom: 0.75rem;
  transition: letter-spacing 0.6s ease;
}

.pj-sgo__eyebrow--featured.pj-sgo__eyebrow--pill {
  background: rgba(20, 24, 20, 0.45);
  padding: 0.25rem 0.625rem;
}

@media (hover: hover) {
  .pj-sgo__tile:hover .pj-sgo__eyebrow--featured {
    letter-spacing: calc(var(--pj-sgo-featured-eyebrow-tracking, 0.16em) + 0.06em);
  }
}

.pj-sgo__name--featured {
  display: block;
  font-family: var(--pj-sgo-featured-name-font, var(--font-heading, 'EB Garamond', serif));
  font-style: var(--pj-sgo-featured-name-style, italic);
  font-weight: var(--pj-sgo-featured-name-weight, 400);
  font-size: var(--pj-sgo-featured-name-size-mobile, 34px);
  line-height: 1.0;
  color: var(--pj-sgo-featured-name-color, #FFFFFF);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

@media (min-width: 768px) {
  .pj-sgo__name--featured {
    font-size: var(--pj-sgo-featured-name-size-desktop, 42px);
  }
}

/* === Stacked tiles === */
.pj-sgo__stack {
  display: grid;
  gap: var(--pj-sgo-tile-gap, 12px);
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  /* Match the featured tile's height via the outer grid's `align-items: stretch`
     (the default) rather than declaring an aspect-ratio here. Safari ignores
     aspect-ratio on a grid item that contains <img> children with intrinsic
     dimensions, growing the stack past the featured tile. height:100% +
     min-height:0 forces the stack to take exactly the row's stretched height,
     which Chrome and Safari handle identically. */
  .pj-sgo__stack {
    height: 100%;
    min-height: 0;
  }

  .pj-sgo__tile--stacked {
    min-height: 0;
  }

  /* Take the stacked tile's image out of intrinsic-size flow so it can't
     leak its own height back into the grid's track sizing. The tile is
     already position:relative + overflow:hidden, so absolute inset:0 fills
     it exactly. Featured tile keeps the existing behavior because its
     aspect-ratio is set directly on the tile and Safari handles that fine. */
  .pj-sgo__tile--stacked .pj-sgo__tile-img {
    position: absolute;
    inset: 0;
  }
}

.pj-sgo__tile--stacked {
  min-height: var(--pj-sgo-stacked-min-mobile, 160px);
}

.pj-sgo__tile-text--stacked {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
}

.pj-sgo__eyebrow--stacked {
  display: inline-block;
  font-size: var(--pj-sgo-stacked-eyebrow-size, 8px);
  text-transform: uppercase;
  letter-spacing: var(--pj-sgo-stacked-eyebrow-tracking, 0.14em);
  font-weight: var(--pj-sgo-stacked-eyebrow-weight, 500);
  font-style: var(--pj-sgo-stacked-eyebrow-style, normal);
  color: var(--pj-sgo-eyebrow, #D2A16A);
  margin-bottom: 0.375rem;
  transition: letter-spacing 0.6s ease;
}

.pj-sgo__eyebrow--stacked.pj-sgo__eyebrow--pill {
  background: rgba(20, 24, 20, 0.4);
  padding: 0.125rem 0.5rem;
}

@media (hover: hover) {
  .pj-sgo__tile:hover .pj-sgo__eyebrow--stacked {
    letter-spacing: calc(var(--pj-sgo-stacked-eyebrow-tracking, 0.14em) + 0.04em);
  }
}

.pj-sgo__name--stacked {
  display: block;
  font-family: var(--pj-sgo-stacked-name-font, var(--font-heading, 'EB Garamond', serif));
  font-style: var(--pj-sgo-stacked-name-style, italic);
  font-weight: var(--pj-sgo-stacked-name-weight, 400);
  font-size: var(--pj-sgo-stacked-name-size-mobile, 21px);
  line-height: 1.25;
  color: var(--pj-sgo-stacked-name-color, #FFFFFF);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .pj-sgo__name--stacked {
    font-size: var(--pj-sgo-stacked-name-size-desktop, 21px);
  }
}

.pj-sgo__name--stacked.pj-sgo__name--wrap {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

/* === Motion === */
.pj-sgo__enter {
  opacity: 0;
  transform: translateY(20px);
  animation: pj-sgo-enter 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--pj-sgo-enter-delay, 0ms);
}

@keyframes pj-sgo-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-sgo__enter {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pj-sgo__tile-img,
  .pj-sgo__eyebrow--featured,
  .pj-sgo__eyebrow--stacked {
    transition: none;
  }

  @media (hover: hover) {
    .pj-sgo__tile:hover .pj-sgo__tile-img {
      transform: none;
    }
    .pj-sgo__tile:hover .pj-sgo__eyebrow--featured {
      letter-spacing: var(--pj-sgo-featured-eyebrow-tracking, 0.16em);
    }
    .pj-sgo__tile:hover .pj-sgo__eyebrow--stacked {
      letter-spacing: var(--pj-sgo-stacked-eyebrow-tracking, 0.14em);
    }
  }
}

section.shopify-section.shopify-section--pj-subcategory-grid-overlay {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_subcategorygridoverlay */

/* START_SECTION:pj_yearstimeline (INDEX:26) */
.pj-yt {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--pj-yt-bg, #2D4A3E);
  color: var(--pj-yt-text, #FAF8F5);
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  padding: var(--pj-yt-pad-y-mobile, 64px) 24px;
}

@media (min-width: 768px) {
  .pj-yt {
    padding: var(--pj-yt-pad-y-desktop, 80px) 40px;
  }
}

/* === Watermark === */
.pj-yt__watermark {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  z-index: 1;
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 600;
  font-size: var(--pj-yt-watermark-size, 300px);
  line-height: 1;
  color: var(--pj-yt-watermark, #FFFFFF);
  opacity: var(--pj-yt-watermark-opacity, 0.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* On small screens, scale watermark down for proportion */
@media (max-width: 767px) {
  .pj-yt__watermark {
    font-size: calc(var(--pj-yt-watermark-size, 300px) * 0.55);
  }
}

/* === Inner container === */
.pj-yt__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--pj-yt-max-width, 1320px);
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pj-yt__inner {
    padding-inline: 48px;
  }
}

@media (min-width: 1024px) {
  .pj-yt__inner {
    padding-inline: 144px;
  }
}

/* === Header === */
.pj-yt__header {
  margin-bottom: 40px;
}

.pj-yt--align-center .pj-yt__header {
  text-align: center;
}

.pj-yt__eyebrow {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pj-yt-muted, rgba(255, 255, 255, 0.5));
  margin: 0 0 6px 0;
  font-weight: 500;
}

.pj-yt__heading {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: var(--pj-yt-text, #FAF8F5);
  margin: 0;
}

@media (min-width: 768px) {
  .pj-yt__heading {
    font-size: 38px;
    line-height: 1.2;
  }
}

/* === Rail / milestones === */
.pj-yt__rail {
  width: 100%;
}

.pj-yt__milestones {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Mobile (default): vertical stack, vertical rail on left */
.pj-yt__milestone {
  position: relative;
  flex: 1;
  padding-left: 24px;
  padding-bottom: 32px;
  border-left: 0.6px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}

.pj-yt__milestone:last-child {
  padding-bottom: 0;
}

.pj-yt__dot {
  position: absolute;
  left: -4.5px;
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--pj-yt-accent, #C1694F);
  border-radius: 50%;
}

.pj-yt__year {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 11px;
  letter-spacing: 0.11em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 4px 0;
}

.pj-yt__title {
  font-family: var(--font-heading, 'EB Garamond', 'Times New Roman', serif);
  font-size: 17px;
  line-height: 23px;
  color: var(--pj-yt-text, #FAF8F5);
  margin: 0;
  font-weight: 400;
}

.pj-yt__blurb {
  font-family: var(--font-body, 'Rubik', system-ui, sans-serif);
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}

.pj-yt__blurb > p {
  margin: 0;
}

.pj-yt__blurb > p + p {
  margin-top: 0.5em;
}

/* Desktop: horizontal rail across the top of milestones. The rail scrolls
   horizontally when there are too many milestones to fit (max_blocks: 8),
   and is keyboard-focusable so arrow keys / shift+arrows scroll it. */
@media (min-width: 768px) {
  .pj-yt__rail {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .pj-yt__rail:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
  }

  .pj-yt__rail--position-above .pj-yt__milestones {
    flex-direction: row;
    border-top: 0.6px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
  }

  .pj-yt__rail--position-below .pj-yt__milestones {
    flex-direction: row;
    border-bottom: 0.6px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 24px;
  }

  .pj-yt__milestone {
    padding-left: 0;
    padding-right: 24px;
    padding-bottom: 0;
    border-left: none;
    min-width: 220px;
    scroll-snap-align: start;
  }

  .pj-yt__rail--position-above .pj-yt__dot {
    left: 0;
    top: -29px;
  }

  .pj-yt__rail--position-below .pj-yt__dot {
    left: 0;
    top: auto;
    bottom: -29px;
  }
}

/* === Hover affordance on dots (desktop pointer only) === */
@media (hover: hover) {
  .pj-yt__milestone:hover .pj-yt__dot {
    transform: scale(1.25);
    transition: transform 200ms ease;
  }
}

/* === Motion === */
.pj-yt__enter {
  opacity: 0;
  transform: translateY(20px);
  animation-name: pj-yt-enter;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

.pj-yt__header.pj-yt__enter {
  animation-delay: 0ms;
}

@keyframes pj-yt-enter {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pj-yt__enter,
  .pj-yt__header.pj-yt__enter,
  .pj-yt__milestone.pj-yt__enter {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pj-yt__milestone:hover .pj-yt__dot {
    transform: none;
    transition: none;
  }
}

section.shopify-section.shopify-section--pj-years-timeline {
  margin-top: 0;
  padding-top: 0;
}
/* END_SECTION:pj_yearstimeline */

/* START_SECTION:announcement-bar (INDEX:30) */
.pj-ab {
  display: block;
  width: 100%;
  background-color: var(--pj-ab-bg, var(--accent, #2c2c2c));
  color: var(--pj-ab-fg, #ffffff);
  padding-block: var(--pj-ab-py, 8px);
  padding-inline: 1rem;
}

.pj-ab[data-template="primary"]    { --pj-ab-bg: var(--accent, #C1694F); --pj-ab-fg: #ffffff; }
.pj-ab[data-template="secondary"]  { --pj-ab-bg: var(--secondary, #F5F1EC); --pj-ab-fg: var(--secondary-foreground, #2C2C2C); }
.pj-ab[data-template="dark"]       { --pj-ab-bg: var(--foreground, #2C2C2C); --pj-ab-fg: var(--background, #FAF8F5); }
.pj-ab[data-template="outline"]    {
  --pj-ab-bg: transparent;
  --pj-ab-fg: var(--foreground, #2C2C2C);
  border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.1));
}
.pj-ab[data-template="garden"]      { --pj-ab-bg: var(--brand-medium-green, #3e6533); --pj-ab-fg: #ffffff; }
.pj-ab[data-template="warehouse"]   { --pj-ab-bg: var(--brand-yellow, #fddd00); --pj-ab-fg: var(--brand-dark-blue, #263543); }
.pj-ab[data-template="clearance"]   { --pj-ab-bg: var(--brand-dark-red, #b52025); --pj-ab-fg: #ffffff; }
.pj-ab[data-template="memorial"]    { --pj-ab-bg: var(--brand-dark-blue, #263543); --pj-ab-fg: #ffffff; }
.pj-ab[data-template="winter"]      { --pj-ab-bg: var(--brand-light-blue, #4488bc); --pj-ab-fg: var(--brand-dark-blue, #263543); }
.pj-ab[data-template="fathers-day"] { --pj-ab-bg: var(--brand-brown, #502d1e); --pj-ab-fg: #ffffff; }

.pj-ab__container {
  position: relative;
  max-width: var(--pj-ab-max-width, 1280px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pj-ab__main {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

.pj-ab__text,
.pj-ab__slide {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--pj-ab-font-size, 10px);
  letter-spacing: var(--pj-ab-tracking, 0.15em);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.pj-ab__text strong,
.pj-ab__slide strong {
  font-weight: var(--font-weight-medium, 600);
}

.pj-ab__text em,
.pj-ab__slide em {
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.pj-ab__link {
  color: inherit;
  text-decoration: none;
}
.pj-ab__link:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.pj-ab__link:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

.pj-ab__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--pj-ab-gap, 48px);
  width: 100%;
}

.pj-ab__divider {
  display: inline-block;
  flex: 0 0 auto;
  color: inherit;
  opacity: 0.5;
}
.pj-ab__divider--dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}
.pj-ab__divider--line {
  width: 1px; height: 12px;
  background-color: currentColor;
  opacity: 0.4;
}
.pj-ab__divider--slash {
  width: 1px; height: 14px;
  background-color: currentColor;
  transform: rotate(20deg);
  opacity: 0.45;
}
.pj-ab__divider--diamond {
  width: 5px; height: 5px;
  background-color: currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
}
.pj-ab__divider--sparkle {
  width: 10px; height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  background-color: transparent;
}
.pj-ab__divider--sparkle svg {
  width: 100%; height: 100%;
  display: block;
}

.pj-ab__carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  min-height: 15px;
}

.pj-ab__viewport {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.pj-ab__slide {
  padding-inline: 2rem;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pj-ab__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  inset: auto;
}
.pj-ab__slide.is-exiting {
  opacity: 0;
  transform: translateY(-10px);
}

.pj-ab__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.pj-ab__nav:hover { opacity: 0.7; }
.pj-ab__nav:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}
.pj-ab__nav svg { width: 14px; height: 14px; display: block; }
.pj-ab__nav--prev { left: 0; }
.pj-ab__nav--next { right: 0; }

.pj-ab__placeholder {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--pj-ab-font-size, 10px);
  letter-spacing: var(--pj-ab-tracking, 0.15em);
  text-transform: uppercase;
  opacity: 0.6;
  padding-block: 0.25rem;
}

.pj-ab__countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: var(--pj-ab-font-size, 10px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.pj-ab__cd-icon { width: 12px; height: 12px; opacity: 0.8; }
.pj-ab__cd-label { opacity: 0.85; font-weight: var(--font-weight-medium, 500); }

.pj-ab__countdown--minimal {
  opacity: 0.75;
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: 0.08em;
}

.pj-ab__countdown--compact {
  font-weight: 600;
  gap: 6px;
}

.pj-ab__countdown--boxed {
  gap: 4px;
  text-transform: none;
  letter-spacing: 0;
  align-items: flex-start;
}

.pj-ab__countdown--boxed .pj-ab__cd-label {
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 2px;
}

.pj-ab__cd-group { display: inline-flex; align-items: flex-start; gap: 4px; }

.pj-ab__cd-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.pj-ab__cd-box-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 4px;
  border-radius: var(--radius-sm, 4px);
  background-color: rgba(255, 255, 255, 0.18);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.pj-ab__cd-box-label {
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}
.pj-ab__cd-sep {
  align-self: center;
  margin-top: -10px;
  font-weight: 600;
  opacity: 0.45;
}

.pj-ab[data-template="warehouse"] .pj-ab__cd-box-value,
.pj-ab[data-template="winter"] .pj-ab__cd-box-value {
  background-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .pj-ab__row--desktop { display: none; }

  .pj-ab__slide {
    white-space: normal;
    line-height: 1.35;
    padding-inline: 1.5rem;
    text-overflow: clip;
  }
}
@media (min-width: 768px) {
  .pj-ab__carousel--mobile { display: none; }
  .pj-ab__container {
    flex-direction: row;
    justify-content: center;
  }
  .pj-ab__main {
    flex: 1 1 auto;
  }
  .pj-ab__countdown {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .pj-ab__countdown--boxed {
    transform: translateY(-50%);
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-ab__slide { transition: none; }
}
/* END_SECTION:announcement-bar */

/* START_SECTION:email-sign-up (INDEX:43) */
.email-signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    background: var(--color-background-secondary);
  }

  .email-signup-left {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/cdn/shop/files/harvesting-set-main-86a0910.jpg?v=1765261906");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }

  .email-signup-content {
    text-align: left;
    max-width: 100%;
  }

  .email-signup-content .prose {
    color: white;
  }

  .email-signup-content h2 {
    color: white;
  }

  .email-signup-content .subheading {
    color: white;
  }

  .email-signup-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: white;
  }

  .contact-form {
    width: 100%;
    max-width: 500px;
    padding: 0 !important;
    background: transparent !important;
  }

  @media (max-width: 768px) {
    .email-signup-container {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .email-signup-left {
      min-height: 300px;
    }

    .email-signup-right {
      min-height: 400px;
    }
  }
/* END_SECTION:email-sign-up */

/* START_SECTION:testimonials (INDEX:100) */
.testimonial-card {
    border: 1px solid #d4c5b9;
    border-radius: 12px;
    padding: 30px;
    background-color: white !important;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .testimonial-quote-icon {
    font-size: 48px;
    color: #d4c5b9;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 300;
    flex-shrink: 0;
  }

  .testimonial-card .h-stack {
    flex-shrink: 0;
  }

  .testimonial-card > .v-stack:last-of-type {
    flex-grow: 1;
  }

  .testimonial-list {
    position: relative;
    z-index: 1;
    margin-bottom: -60px;
  }

  .testimonial-list.scroll-area {
    margin-bottom: -20%;
    overflow: visible !important;
  }

  .scrollable-with-controls {
    overflow: visible !important;
    padding-bottom: 80px;
  }

  #shopify-section-{{ section.id }} {
    padding-bottom: 0;
    overflow: visible !important;
  }

  #shopify-section-{{ section.id }} .section-stack {
    overflow: visible !important;
  }
/* END_SECTION:testimonials */