
:root:has([data-theme-pack="jewelry"]),
[data-theme-pack="jewelry"] {
  /* Surfaces */
  --jw-bg: var(--color-bg, #ffffff);
  --jw-surface: var(--color-card, #ffffff);
  --jw-light: var(--color-muted-surface, var(--color-bg, #ffffff));
  --jw-border: var(--color-border, #e8e8ec);

  /* Text inks — independent from brand/button */
  --jw-heading: var(--color-heading, var(--color-text, #0a0a0b));
  --jw-primary: var(--jw-heading);
  --jw-body: var(--color-text, #5c5c66);
  --jw-muted: var(--color-muted-text, #73737c);

  /* Brand / buttons only */
  --jw-brand: var(--color-primary, #0a0a0b);
  --jw-on-primary: var(--color-on-primary, #ffffff);
  --jw-accent: var(--color-accent, var(--color-primary, #0a0a0b));
  --jw-sale: var(--jw-heading);
  --jw-discount: var(--color-sale, #e11d48);

  --jw-container: 100%;
  --jw-page-pad: clamp(0.85rem, 3vw, 2.5rem);
  --jw-gutter: var(--jw-page-pad);
  --jw-radius: 16px;
  --jw-radius-sm: 12px;
  --jw-font: var(--font-sans, "Noto Sans Georgian", "Noto Sans", system-ui, sans-serif);
  --jw-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --jw-drawer-z: 10050;
}

html.dark:has([data-theme-pack="jewelry"]),
html.dark [data-theme-pack="jewelry"],
html.dark.jw-app,
html.dark body.jw-app {
  --jw-heading: var(--color-dark-heading, #f4f4f5);
  --jw-primary: var(--jw-heading);
  --jw-body: var(--color-dark-text, #c4c4cc);
  --jw-bg: var(--color-dark-bg, var(--color-bg-dark, #09090b));
  --jw-surface: var(--color-dark-card, #141417);
  --jw-light: var(--color-dark-muted-surface, #141417);
  --jw-border: var(--color-dark-border, #2a2a30);
  --jw-brand: var(--color-dark-primary, var(--color-primary, #f4f4f5));
  --jw-accent: var(--color-dark-accent, var(--color-dark-primary, var(--color-primary, #f4f4f5)));
  --jw-on-primary: var(--color-dark-on-primary, var(--color-on-primary, #09090b));
  --jw-sale: var(--jw-heading);
  --jw-muted: var(--color-dark-muted-text, #a1a1aa);
  --jw-discount: var(--color-dark-sale, #e11d48);
  color-scheme: dark;
}

.jw-wrap,
.jw-header,
.jw-footer,
.jw-hero,
.jw-section,
.jw-pdp,
.jw-product-grid,
.jw-collection-header,
.jw-page-banner,
.jw-catalog,
.jw-cart,
.jw-checkout,
.jw-auth,
.jw-about,
.jw-contact,
.jw-faq,
.jw-stories,
.jw-404,
.jw-content {
  font-family: var(--jw-font);
  color: var(--jw-body);
  box-sizing: border-box;
}

.jw-wrap *,
.jw-header *,
.jw-footer *,
.jw-hero *,
.jw-section *,
.jw-pdp *,
.jw-product-grid *,
.jw-page-banner *,
.jw-catalog *,
.jw-cart *,
.jw-checkout *,
.jw-auth *,
.jw-about *,
.jw-contact *,
.jw-faq *,
.jw-stories *,
.jw-404 *,
.jw-content * {
  box-sizing: border-box;
}

.jw-container {
  width: 100%;
  max-width: var(--jw-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--jw-page-pad) !important;
  padding-right: var(--jw-page-pad) !important;
}

body.jw-app .jw-pdp,
body.jw-app .jw-catalog,
body.jw-app .jw-cart,
body.jw-app .jw-checkout,
body.jw-app .jw-auth,
body.jw-app .jw-about,
body.jw-app .jw-contact,
body.jw-app .jw-faq,
body.jw-app .jw-stories,
body.jw-app .jw-404,
body.jw-app .jw-content {
  background: var(--jw-bg);
}

/* Product grid: never paint a separate plate over the page background */
body.jw-app .jw-section--products,
body.jw-app .jw-product-grid,
body.jw-app .jw-product-grid.jw-grid {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.jw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 2rem;
  border: 1px solid var(--jw-brand, var(--jw-primary));
  border-radius: var(--jw-radius-sm);
  background: var(--jw-brand, var(--jw-primary));
  color: var(--jw-on-primary);
  font-family: var(--jw-font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 220ms var(--jw-ease), color 220ms var(--jw-ease), border-color 220ms var(--jw-ease), transform 220ms var(--jw-ease), filter 220ms var(--jw-ease);
}

.jw-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.jw-btn:disabled,
.jw-btn[aria-disabled="true"] {
  opacity: 0.38;
  cursor: not-allowed;
  filter: none !important;
  transform: none !important;
  pointer-events: none;
}

.jw-btn:disabled:hover,
.jw-btn[aria-disabled="true"]:hover {
  filter: none !important;
  transform: none !important;
}

.jw-btn:focus-visible {
  outline: 2px solid var(--jw-accent);
  outline-offset: 3px;
}

.jw-btn--outline {
  background: transparent;
  color: var(--jw-brand, var(--jw-primary));
  border-color: var(--jw-brand, var(--jw-primary));
}

.jw-btn--outline:hover {
  background: var(--jw-brand, var(--jw-primary));
  color: var(--jw-on-primary);
  filter: none;
}

.jw-btn--sm {
  min-height: 40px;
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
}

.jw-link {
  color: var(--jw-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.jw-link:hover {
  opacity: 0.65;
}

.jw-link:focus-visible {
  outline: 2px solid var(--jw-primary);
  outline-offset: 2px;
}

/* —— Header —— */
.jw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid var(--jw-border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 8px 28px rgba(15, 15, 18, 0.045);
}

html.dark .jw-header {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
  background-image: none !important;
  border-bottom-color: var(--jw-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 32px rgba(0, 0, 0, 0.35);
}

.jw-header__bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: 4.25rem;
  padding: 0.65rem 0;
}

@media (min-width: 1024px) {
  .jw-header__bar {
    grid-template-columns: auto 1fr auto;
    min-height: 4.75rem;
    padding: 0.85rem 0;
  }
}

.jw-header__left {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.jw-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
  color: var(--jw-primary);
}

.jw-logo img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.jw-logo-img--dark {
  display: none !important;
}

html.dark .jw-logo-img--light {
  display: none !important;
}

html.dark .jw-logo-img--dark {
  display: block !important;
}

@media (min-width: 768px) {
  .jw-logo img,
  .jw-logo-img {
    height: 34px;
    max-width: 180px;
  }
}

.jw-logo__text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jw-primary);
}

.jw-nav {
  display: none;
  justify-content: center;
  border: 0;
}

@media (min-width: 1024px) {
  .jw-nav {
    display: flex;
  }
}

.jw-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jw-nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--jw-body);
  transition: color 280ms var(--jw-ease);
}

.jw-nav__links a::after {
  display: none !important;
  content: none !important;
}

.jw-nav__links a:hover,
.jw-nav__links a[aria-current="page"] {
  color: var(--jw-accent, var(--jw-brand));
  background: transparent !important;
}

.jw-nav__links a:focus-visible {
  outline: 2px solid var(--jw-accent);
  outline-offset: 3px;
}

.jw-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  justify-self: end;
}

.jw-header__lang {
  margin-left: 0.15rem;
  flex-shrink: 0;
}

.jw-header__lang .lang-flag {
  height: 0.875rem;
  width: 1.35rem;
  display: inline-flex;
  overflow: hidden;
  border-radius: 2px;
}

.jw-header__theme {
  display: inline-flex;
  align-items: center;
  margin-right: 0.25rem;
}

.jw-header__theme button {
  border-color: var(--jw-border) !important;
  background: var(--jw-light) !important;
}

html.dark .jw-header__theme button {
  background: var(--jw-light) !important;
}

.jw-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--jw-primary);
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms var(--jw-ease), color 180ms var(--jw-ease);
}

.jw-action:hover {
  background: rgba(20, 20, 20, 0.05);
}

.jw-action:focus-visible {
  outline: 2px solid var(--jw-accent);
  outline-offset: 2px;
}

.jw-action--desktop {
  display: none;
}

@media (min-width: 768px) {
  .jw-action--desktop {
    display: inline-flex;
  }
}

.jw-action__bubble {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--jw-brand, var(--jw-primary));
  color: var(--jw-on-primary);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

.jw-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--jw-primary);
  cursor: pointer;
}

.jw-burger:hover {
  background: rgba(20, 20, 20, 0.05);
}

@media (min-width: 1024px) {
  .jw-burger {
    display: none;
  }
}

.jw-mobile {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: auto;
}

.jw-mobile__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 10, 10, 0.48);
  cursor: pointer;
  animation: jw-fade-in 200ms var(--jw-ease) both;
}

.jw-mobile__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  padding: 1.1rem 1.25rem 2rem;
  overflow-y: auto;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.18);
  animation: jw-drawer-in 280ms var(--jw-ease) both;
}

html.dark .jw-mobile__panel {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
  color: var(--jw-body);
}

.jw-mobile__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--jw-border);
}

.jw-mobile__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--jw-primary);
  cursor: pointer;
}

.jw-mobile__tools {
  display: flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--jw-border);
}

.jw-mobile__nav {
  display: flex;
  flex-direction: column;
}

.jw-mobile__nav a,
.jw-mobile__panel > a {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--jw-primary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--jw-border);
}

@keyframes jw-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes jw-drawer-in {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* —— Hero —— */
.jw-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--jw-light);
  border-radius: 0;
}

.jw-hero__slide {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  border-radius: 0;
}

.jw-hero__slides {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.jw-hero__slides > .jw-hero__slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms var(--jw-ease);
}

.jw-hero__slides > .jw-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Stacked media layers — one visible slide, no vertical stacking on mobile */
.jw-hero__media-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.jw-hero__media-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms var(--jw-ease);
}

.jw-hero__media-layer.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.jw-hero__frame > .jw-hero__slide {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: var(--jw-hero-min-h, 42vh);
  height: 100%;
  background: transparent;
  pointer-events: none;
}

.jw-hero__frame > .jw-hero__slide .jw-hero__content {
  pointer-events: auto;
}

/* Allow vertical page scroll even when swipe starts on hero. */
.jw-hero__frame,
.jw-hero__media-stack {
  touch-action: pan-y;
}

.jw-hero__video,
.jw-hero__video-shimmer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.jw-hero__video-shimmer {
  z-index: 0;
  background: linear-gradient(135deg, #1a1917 0%, #0f0e0d 40%, #1a1917 60%, #0f0e0d 100%);
  animation: jw-hero-shimmer 1.6s ease-in-out infinite;
  transition: opacity 500ms var(--jw-ease);
}

.jw-hero__video-shimmer.is-ready {
  opacity: 0;
  pointer-events: none;
}

.jw-hero__video {
  z-index: 0;
  opacity: 0;
  transition: opacity 500ms var(--jw-ease);
}

.jw-hero__video.is-ready {
  opacity: 1;
}

@keyframes jw-hero-shimmer {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

.jw-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s var(--jw-ease), opacity 700ms var(--jw-ease);
}

.jw-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s var(--jw-ease), opacity 700ms var(--jw-ease);
}

.jw-hero__media--mobile {
  display: none;
}

@media (max-width: 767px) {
  .jw-hero__media--desktop.jw-hero__media--has-mobile {
    display: none;
  }

  .jw-hero__media--mobile {
    display: block;
  }
}

.jw-hero__slide:hover .jw-hero__bg,
.jw-hero__slide:hover .jw-hero__img {
  transform: scale(1.08);
}

/* Soft scrim only behind title/CTA (left), then fades so media keeps its color. */
.jw-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.52) 0%,
    rgba(10, 10, 10, 0.28) 26%,
    rgba(10, 10, 10, 0.1) 46%,
    rgba(10, 10, 10, 0) 68%
  );
  z-index: 1;
}

@media (max-width: 767px) {
  /* Mobile: copy sits lower — gentle bottom→up fade, still clear on most of the frame. */
  .jw-hero__veil {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.12) 38%,
      rgba(10, 10, 10, 0.42) 72%,
      rgba(10, 10, 10, 0.55) 100%
    );
  }
}

.jw-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 4.5rem 0 5.5rem;
  animation: jw-hero-in 700ms var(--jw-ease) both;
}

.jw-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jw-accent);
}

.jw-hero__title {
  margin: 0 0 0.9rem;
  font-size: clamp(2.35rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.jw-hero__sub {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.jw-hero .jw-btn--outline {
  border-color: #fff;
  color: #fff;
}

.jw-hero .jw-btn--outline:hover {
  background: #fff;
  color: #141414;
}

.jw-hero__arrow {
  position: relative;
  top: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.28);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 180ms var(--jw-ease), transform 180ms var(--jw-ease);
  flex-shrink: 0;
}

.jw-hero__nav {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--jw-page-pad, 1rem);
  pointer-events: none;
}

.jw-hero__nav .jw-hero__arrow {
  pointer-events: auto;
}

.jw-hero__arrow:hover {
  background: rgba(20, 20, 20, 0.5);
  transform: scale(1.04);
}

.jw-hero__arrow--prev,
.jw-hero__arrow--next {
  left: auto;
  right: auto;
}

@media (max-width: 640px) {
  .jw-hero__arrow {
    width: 36px;
    height: 36px;
  }

  .jw-hero__nav {
    padding: 0 0.5rem;
  }
}

.jw-hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}

.jw-hero__dot {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jw-hero__dot::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 200ms var(--jw-ease), width 200ms var(--jw-ease);
}

.jw-hero__dot[aria-selected="true"]::after {
  width: 40px;
  background: var(--jw-accent);
}

@keyframes jw-hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections shared —— */
.jw-section {
  padding: 3rem 0;
  background: var(--jw-bg);
}

.jw-section--light {
  background: var(--jw-light);
}

.jw-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.jw-heading h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--jw-primary);
  letter-spacing: 0.02em;
}

.jw-heading p {
  margin: 0;
  font-weight: 300;
  color: var(--jw-body);
  font-size: 0.95rem;
}

.jw-heading--decor h2 {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.jw-heading--decor h2::before,
.jw-heading--decor h2::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--jw-accent);
}

/* —— Promo banners —— */
.jw-banners {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

.jw-banner {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.75rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--jw-primary);
  border-radius: var(--jw-radius);
}

.jw-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.jw-banner:hover .jw-banner__bg {
  transform: scale(1.04);
}

.jw-banner__body {
  position: relative;
  z-index: 1;
}

.jw-banner__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.jw-banner__title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}

.jw-banner--light {
  color: #fff;
}

.jw-banner--large {
  min-height: 320px;
}

@media (min-width: 768px) {
  .jw-banners--dual {
    grid-template-columns: 1fr 1fr;
  }
  .jw-banner--large {
    min-height: 380px;
  }
}

/* —— Categories —— */
.jw-cats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1.25rem 1.5rem;
}

.jw-scroll.jw-cats {
  justify-content: flex-start;
}

.jw-cats--centered,
.jw-cats--centered-desktop {
  justify-content: flex-start !important;
}

.jw-rail--centered .jw-rail__arrow,
.jw-rail--centered-desktop .jw-rail__arrow {
  display: none !important;
}

.jw-cats--rail > .jw-cat,
.jw-scroll.jw-cats > .jw-cat {
  flex: 0 0 auto;
  width: 118px;
  scroll-snap-align: start;
}

.jw-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 118px;
  text-decoration: none;
  color: var(--jw-primary);
  text-align: center;
}

.jw-cat__img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--jw-light);
}

.jw-cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Disable base image zoom on category hover */
body.jw-app .jw-cat:hover .jw-cat__img img,
.jw-cat:hover .jw-cat__img img {
  transform: none !important;
}

.jw-cat__label {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* —— Product card —— */
.jw-pc {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: var(--jw-bg);
}

.jw-pc__media {
  position: relative;
  margin-bottom: 0.65rem;
  aspect-ratio: 3 / 4;
  background: var(--jw-light);
  overflow: hidden;
}

.jw-pc__media > a {
  position: absolute;
  inset: 0;
  display: block;
}

.jw-pc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.jw-pc__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f3f3f3, #ececec);
  color: #d8d8d8;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Facebook-style loading shimmer for product cards */
.jw-fb-shimmer {
  position: relative;
  overflow: hidden;
  background: #e4e6eb;
}

.jw-fb-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  animation: jw-fb-shimmer 1.15s ease-in-out infinite;
}

@keyframes jw-fb-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.jw-pc--skeleton {
  pointer-events: none;
}

.jw-pc-skeleton__media {
  margin-bottom: 0.65rem;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
}

.jw-pc-skeleton__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.25rem;
}

.jw-pc-skeleton__line {
  height: 0.72rem;
  width: 88%;
  border-radius: 4px;
}

.jw-pc-skeleton__line--short {
  width: 52%;
  height: 0.62rem;
}

html.dark .jw-fb-shimmer {
  background: #3a3b3c;
}

html.dark .jw-fb-shimmer::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
}

.jw-pc:hover .jw-pc__media img {
  transform: scale(1.04);
}

.jw-pc__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.25rem 0.5rem;
  background: var(--jw-sale);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jw-pc__badge--sale {
  background: var(--jw-discount);
}

.jw-pc__type {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-pc__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.35em * 2);
}

.jw-pc__title a {
  color: var(--jw-primary);
  text-decoration: none;
}

.jw-pc__title a:hover {
  opacity: 0.7;
}

.jw-pc__price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-pc__price .compare {
  margin-left: 0.4rem;
  color: var(--jw-muted);
  text-decoration: line-through;
  font-weight: 300;
}

.jw-pc__cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 44px;
  border: 0;
  background: var(--jw-brand, var(--jw-primary));
  color: var(--jw-on-primary);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.jw-pc:hover .jw-pc__cart,
.jw-pc:focus-within .jw-pc__cart {
  transform: translateY(0);
}

.jw-pc__cart:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.4);
}

.jw-pc--oos .jw-pc__media {
  opacity: 0.72;
}

.jw-pc__badge--oos {
  background: #52525b !important;
  color: #fff !important;
}

.jw-pc__cart:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
  transform: translateY(0);
}

/* —— Product grids / carousels —— */
.jw-rail {
  position: relative;
}

.jw-rail__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  background: var(--jw-bg);
  color: var(--jw-primary);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-50%);
  transition: transform 180ms var(--jw-ease), background 180ms var(--jw-ease);
}

.jw-rail__arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: var(--jw-light);
}

.jw-rail__arrow--prev {
  left: 0.5rem;
}

.jw-rail__arrow--next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .jw-rail__arrow {
    display: inline-flex;
  }
}

.jw-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Keep horizontal rail swipe, but never block vertical page scroll. */
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
}

.jw-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.jw-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.jw-scroll.is-dragging a,
.jw-scroll.is-dragging button {
  pointer-events: none;
}

.jw-scroll > * {
  flex: 0 0 min(240px, 70vw);
  scroll-snap-align: start;
  pointer-events: auto;
}

.jw-grid {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

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

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

.jw-collection-header {
  margin-bottom: 2rem;
  text-align: center;
}

.jw-collection-header h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-collection-header p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--jw-muted);
}

/* —— Store CTA —— */
.jw-store-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 2rem 1rem;
  border: 1px solid var(--jw-border);
  text-align: center;
}

.jw-store-cta h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--jw-primary);
}

/* —— Testimonials —— */
.jw-quotes {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

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

.jw-quote {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--jw-border);
}

.jw-quote__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--jw-primary);
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.jw-quote h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--jw-primary);
}

.jw-quote p {
  margin: 0 0 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  font-size: 0.9rem;
}

.jw-quote footer {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--jw-primary);
}

.jw-stars {
  color: var(--jw-sale);
  letter-spacing: 0.1em;
}

/* —— Journal —— */
.jw-journal {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

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

.jw-journal-card {
  text-decoration: none;
  color: inherit;
}

.jw-journal-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--jw-light);
}

.jw-journal-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.jw-journal-card:hover .jw-journal-card__img img {
  transform: scale(1.04);
}

.jw-journal-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jw-primary);
}

.jw-journal-card__meta {
  font-size: 0.75rem;
  color: var(--jw-muted);
  margin-bottom: 0.5rem;
}

.jw-journal-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--jw-primary);
}

/* —— Instagram —— */
.jw-ig {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .jw-ig {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .jw-ig {
    grid-template-columns: repeat(6, 1fr);
  }
}

.jw-ig a {
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  background: var(--jw-light);
}

.jw-ig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.jw-ig a:hover img {
  transform: scale(1.06);
}

/* —— Newsletter —— */
.jw-newsletter {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.jw-newsletter h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-newsletter label {
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 300;
  font-size: 0.9rem;
}

.jw-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jw-newsletter__fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .jw-newsletter__form {
    flex-direction: column;
  }

  .jw-newsletter__fields {
    flex-direction: row;
  }
}

.jw-newsletter__error {
  margin: 0;
  font-size: 0.8rem;
  color: #dc2626;
}

.jw-newsletter__form input {
  flex: 1;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--jw-border);
  border-radius: var(--jw-radius-sm);
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--jw-surface, var(--jw-bg));
  color: var(--jw-heading);
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.jw-newsletter__form input::placeholder {
  color: var(--jw-muted);
  opacity: 0.85;
}

.jw-newsletter__form input:hover {
  border-color: color-mix(in srgb, var(--jw-muted) 35%, var(--jw-border));
}

.jw-newsletter__form input:focus {
  outline: none;
  border-color: var(--jw-brand, var(--jw-primary));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--jw-brand, var(--jw-primary)) 12%, transparent);
}

@media (hover: none) {
  .jw-newsletter__form input:hover {
    border-color: var(--jw-border);
    box-shadow: none;
  }
}

/* —— Features —— */
.jw-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jw-features li {
  flex: 1 1 140px;
  max-width: 220px;
}

.jw-features img {
  width: 37px;
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
}

.jw-features h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-features p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--jw-muted);
}

/* —— Footer —— */
.jw-footer {
  background: var(--jw-bg);
  border-top: 1px solid var(--jw-border);
  padding-top: 3rem;
}

.jw-footer__cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .jw-footer__cols {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .jw-footer__cols {
    grid-template-columns: 1.5fr 1fr 1.1fr;
    gap: 2.5rem 3rem;
  }
}

.jw-footer__brand {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.jw-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.jw-footer__logo img,
.jw-footer__logo .jw-logo-img {
  height: 40px;
  width: auto;
}

.jw-footer__logo .jw-logo__text {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--jw-primary);
  letter-spacing: -0.02em;
}

.jw-footer__tagline {
  margin: 0;
  max-width: 18rem;
  font-weight: 300;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--jw-muted);
}

.jw-footer h3 {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jw-footer li + li {
  margin-top: 0.5rem;
}

.jw-footer a {
  color: var(--jw-body);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
}

.jw-footer a:hover {
  color: var(--jw-primary);
}

.jw-footer__contact {
  display: grid;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.55;
  font-style: normal;
}

.jw-footer__contact-line {
  display: block;
}

.jw-footer__hours {
  color: var(--jw-muted);
}

.jw-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.jw-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  color: var(--jw-primary);
  transition: border-color 200ms var(--jw-ease), background 200ms var(--jw-ease), color 200ms var(--jw-ease);
}

.jw-footer__social a:hover {
  border-color: var(--jw-primary);
  background: var(--jw-light);
}

.jw-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: 2.5rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--jw-border);
  font-size: 0.8rem;
  font-weight: 300;
}

.jw-footer__copy {
  margin: 0;
}

.jw-footer__powered {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}

.jw-footer__powered:hover {
  text-decoration: underline;
  opacity: 1;
}

.jw-footer__pay {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  margin-left: auto;
}

@media (max-width: 767px) {
  .jw-footer__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .jw-footer__copy {
    width: 100%;
    text-align: center;
  }

  .jw-footer__pay {
    margin-left: 0;
    justify-content: center;
  }
}

.jw-footer__pay-icon {
  display: inline-flex;
  line-height: 0;
  opacity: 0.95;
}

.jw-footer__pay-icon svg {
  display: block;
  height: 26px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

/* —— PDP —— */
.jw-pdp {
  padding: 1.5rem 0 3rem;
}

.jw-pdp__crumb {
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-pdp__crumb a {
  color: inherit;
  text-decoration: none;
}

.jw-pdp__crumb a:hover {
  color: var(--jw-primary);
}

.jw-pdp__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .jw-pdp__grid {
    grid-template-columns: minmax(0, 480px) 1fr;
    gap: 3rem;
  }
}

.jw-pdp__info {
  border: 1px solid var(--jw-border);
  border-radius: calc(var(--jw-radius) + 6px);
  padding: 1.35rem;
  background: var(--jw-bg);
}

@media (min-width: 1024px) {
  .jw-pdp__info {
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}

.jw-pdp__title {
  margin: 0.45rem 0 0.45rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: var(--jw-primary);
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.jw-pdp__sku {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--jw-muted, var(--jw-body));
  opacity: 0.75;
}

.jw-pdp__excerpt {
  margin: 0 0 0.9rem;
  max-width: 36rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  color: #3f3f46;
}

.jw-pdp__price {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--jw-primary);
  margin-bottom: 1rem;
}

.jw-pdp__divider {
  height: 1px;
  background: var(--jw-border);
  margin: 1rem 0;
}

.jw-pdp__qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.jw-pdp__qty-ctl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--jw-border);
  border-radius: var(--jw-radius-sm);
  overflow: hidden;
  background: var(--jw-light);
}

.jw-pdp__qty-ctl button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--jw-primary);
}

.jw-pdp__qty-ctl span {
  min-width: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.jw-pdp__actions {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.65rem;
  min-width: min(100%, 16rem);
}

.jw-pdp__add,
.jw-pdp__buy {
  flex: 1;
  min-width: 7.5rem;
  border-radius: 999px;
}

.jw-pdp__type,
.jw-pdp__label {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-pdp__muted {
  margin: 0;
  font-weight: 300;
  color: var(--jw-muted);
}

.jw-pdp__rich {
  font-weight: 300;
  line-height: 1.7;
  color: var(--jw-body);
}

.jw-pdp__desc {
  margin-top: 0.5rem;
}

.jw-pdp__detail-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .jw-pdp__detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.75rem 3.25rem;
    align-items: start;
  }

  .jw-pdp__detail-grid--solo {
    grid-template-columns: 1fr;
  }
}

.jw-pdp__attrs {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.jw-pdp__attrs-title {
  margin: 0 0 1.15rem;
  font-family: var(--jw-font-display, inherit);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111110;
}

.jw-pdp__detail-desc .jw-pdp__rich,
.jw-pdp__detail-desc .jw-pdp__muted {
  color: #111110;
}

.jw-pdp__specs {
  margin: 0;
  display: grid;
  gap: 0;
}

.jw-pdp__spec {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0.5rem, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: 0.65rem;
  padding: 0.72rem 0;
  border: 0;
  background: transparent;
  line-height: 1.45;
  min-width: 0;
}

.jw-pdp__spec + .jw-pdp__spec {
  border-top: 1px solid rgba(17, 17, 16, 0.08);
}

.jw-pdp__spec dt {
  margin: 0;
  max-width: 9rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #111110;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.jw-pdp__spec-leader {
  display: block;
  width: 100%;
  min-width: 0;
  height: 1px;
  margin: 0.7em 0 0;
  border: 0;
  align-self: start;
  background-image: linear-gradient(
    to right,
    rgba(17, 17, 16, 0.28) 33%,
    rgba(17, 17, 16, 0) 0%
  );
  background-position: center;
  background-size: 5px 1px;
  background-repeat: repeat-x;
  transform: none;
}

.jw-pdp__spec dd {
  margin: 0;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  color: #111110;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

html.dark .jw-pdp,
html.dark .jw-pdp__info,
html.dark .jw-pdp__tabpanel,
html.dark .jw-pdp__tabs {
  color: var(--jw-body);
  background: transparent;
}

html.dark .jw-pdp__title,
html.dark .jw-pdp__spec dd {
  color: var(--jw-primary);
}

html.dark .jw-pdp__qty-ctl {
  background: var(--jw-light);
}

html.dark .jw-pdp__tab {
  color: var(--jw-muted);
}

html.dark .jw-pdp__tab.is-active {
  color: var(--jw-primary);
  border-color: var(--jw-primary);
}

.jw-pdp [class*="border-[#E6E3D9]"] {
  border-color: var(--jw-border) !important;
}

.jw-pdp [class*="text-[#111110]"] {
  color: var(--jw-primary) !important;
}

.jw-pdp [class*="text-[#615C53]"] {
  color: var(--jw-muted) !important;
}

/* App-like mobile shell */
@media (max-width: 767px) {
  .jw-header__bar {
    min-height: 3.75rem;
    padding: 0.45rem 0;
  }

  .jw-section {
    padding: 2.5rem 0;
  }

  .jw-catalog-browse {
    gap: 1.25rem;
  }

  .jw-catalog-main {
    order: 1;
  }

  .jw-pdp__actions {
    width: 100%;
  }

  .jw-pdp__add,
  .jw-pdp__buy {
    min-height: 48px;
  }

  .jw-hero__arrow {
    width: 34px;
    height: 34px;
  }

  .jw-hero__nav {
    padding: 0 0.4rem;
  }

  .jw-mobile__panel {
    width: min(100vw - 1.25rem, 380px);
    border-radius: 0 16px 16px 0;
  }

  .jw-pc__cart {
    opacity: 1;
    transform: none;
  }
}


.jw-pdp__desc h2 {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-pdp__oos {
  flex: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--jw-discount);
  color: var(--jw-discount);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* —— Page banner / breadcrumb —— */
.jw-page-banner {
  border-bottom: 1px solid var(--jw-border);
  background: linear-gradient(180deg, var(--jw-light) 0%, var(--jw-bg) 100%);
  padding: 1.35rem 0 1.6rem;
}

.jw-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--jw-muted);
}

.jw-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.jw-breadcrumb a:hover {
  color: var(--jw-primary);
}

.jw-breadcrumb .is-active span {
  color: var(--jw-primary);
}

.jw-page-banner__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--jw-primary);
  letter-spacing: 0.02em;
}

/* —— Catalog shell + sidebar filters —— */
.jw-catalog__body {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.jw-catalog__body > .mx-auto.max-w-container,
.jw-about__prose > .mx-auto,
.jw-contact__grid > .mx-auto.max-w-container,
.jw-stories__grid-shell > .page-container {
  max-width: none !important;
  width: 100%;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.jw-about__prose > .mx-auto > h1,
.jw-contact__grid > .mx-auto > *:first-child,
.jw-catalog .jw-collection-header,
.jw-catalog__body .page-container > *:first-child,
.jw-catalog__body > .mx-auto.max-w-container > h1:first-of-type,
.jw-catalog__body > .mx-auto.max-w-container > h1:first-of-type + p,
.jw-catalog__body > .mx-auto.max-w-container > header.mb-12 {
  display: none;
}

.jw-catalog-browse {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .jw-catalog-browse {
    flex-direction: row;
    align-items: flex-start;
  }
}

.jw-catalog-aside {
  width: 100%;
  flex-shrink: 0;
}

.jw-catalog-aside--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .jw-catalog-aside--desktop {
    display: block;
    position: sticky;
    top: 6.5rem;
    width: 320px;
  }

  .jw-catalog-filter-btn {
    display: none !important;
  }
}

.jw-catalog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 40px;
  min-height: 40px;
  padding: 0 0.9rem;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  background: var(--jw-bg);
  color: var(--jw-primary);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 180ms var(--jw-ease), border-color 180ms var(--jw-ease), transform 160ms var(--jw-ease);
}

.jw-catalog-filter-btn:active {
  transform: scale(0.97);
}

.jw-catalog-filter-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--jw-primary);
  color: var(--jw-on-primary);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}

.jw-filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.jw-filter-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 11, 10, 0.48);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  animation: jw-fade-in 220ms var(--jw-ease) both;
}

.jw-filter-sheet__panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: var(--jw-surface, #fff) !important;
  background-color: var(--jw-surface, #fff) !important;
  background-image: none !important;
  opacity: 1 !important;
}

/* Default (legacy left drawer) — jewelry uses bottom sheet modifier */
.jw-filter-sheet:not(.jw-filter-sheet--bottom) .jw-filter-sheet__panel {
  top: 0;
  bottom: 0;
  left: 0;
  width: min(100vw - 2.75rem, 22.5rem);
  box-shadow: 18px 0 48px rgba(0, 0, 0, 0.18);
  border-radius: 0 22px 22px 0;
  animation: jw-filter-sheet-in 320ms var(--jw-ease) both;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.jw-filter-sheet--bottom .jw-filter-sheet__panel {
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  max-height: min(86vh, 640px);
  width: 100%;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.14);
  animation: jw-filter-sheet-up 320ms var(--jw-ease) both;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@keyframes jw-filter-sheet-in {
  from {
    transform: translateX(-104%);
    opacity: 0.7;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes jw-filter-sheet-up {
  from {
    transform: translateY(108%);
    opacity: 0.85;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.jw-filter-sheet__handle {
  display: none;
}

.jw-filter-sheet--bottom .jw-filter-sheet__handle {
  display: flex;
  justify-content: center;
  padding: 0.55rem 0 0.15rem;
}

.jw-filter-sheet__handle span {
  width: 2.25rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--jw-border);
}

.jw-filter-sheet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 1rem 0.75rem;
  border-bottom: 1px solid var(--jw-border);
  background: var(--jw-surface, #fff) !important;
}

.jw-filter-sheet__top-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.jw-filter-sheet__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  color: var(--jw-heading, var(--jw-primary));
}

.jw-filter-sheet__title em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--jw-brand, var(--jw-primary));
  color: var(--jw-on-primary, #fff);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 650;
}

.jw-filter-sheet__reset {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.5rem;
  color: var(--jw-muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
}

.jw-filter-sheet__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--jw-border);
  border-radius: 12px;
  background: var(--jw-bg);
  color: var(--jw-heading, var(--jw-primary));
  cursor: pointer;
}

.jw-filter-sheet__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.85rem 1rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.jw-filter-sheet__body .jw-catalog-filters {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.jw-filter-sheet__body .jw-catalog-filters__head {
  display: none;
}

.jw-filter-sheet__foot {
  display: flex;
  gap: 0.65rem;
  padding: 0.75rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--jw-border);
  background: var(--jw-surface, #fff) !important;
}

.jw-filter-sheet__primary {
  flex: 1;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--jw-brand, var(--jw-primary)) !important;
  color: var(--jw-on-primary, #fff) !important;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

html.dark .jw-filter-sheet__backdrop {
  background: rgba(0, 0, 0, 0.62);
}

html.dark .jw-filter-sheet__panel,
html.dark .jw-filter-sheet__top,
html.dark .jw-filter-sheet__foot {
  background: var(--jw-surface) !important;
  background-color: var(--jw-surface) !important;
}

html.dark .jw-catalog-filter-btn {
  background: var(--jw-light);
}

.jw-catalog-filters {
  border: 1px solid var(--jw-border);
  border-radius: 18px;
  background: var(--jw-surface, var(--jw-bg));
  padding: 1rem 0.95rem;
}

.jw-catalog-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.95rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--jw-border);
}

.jw-catalog-filters__title {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-catalog-filters__clear {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--jw-muted);
  cursor: pointer;
  padding: 0;
}

.jw-catalog-filters__clear:hover {
  color: var(--jw-heading, var(--jw-primary));
}

.jw-catalog-filters__group {
  margin-bottom: 1rem;
}

.jw-catalog-filters__group:last-child {
  margin-bottom: 0;
}

.jw-catalog-filters__heading {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-catalog-filters__price-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.jw-catalog-filters__price-head .jw-catalog-filters__heading {
  margin: 0;
}

.jw-catalog-filters__price-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--jw-heading, var(--jw-primary));
  font-variant-numeric: tabular-nums;
}

.jw-catalog-filters__prices {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.jw-catalog-price-ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--jw-muted);
  font-variant-numeric: tabular-nums;
}

.jw-catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.jw-catalog-chips--cats {
  gap: 0.35rem;
}

.jw-catalog-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 34px;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  background: var(--jw-bg);
  font-family: inherit;
  font-size: 0.78rem;
  color: var(--jw-body);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.jw-catalog-chip em {
  font-style: normal;
  opacity: 0.55;
  font-size: 0.7rem;
}

.jw-catalog-chip:hover,
.jw-catalog-chip.is-active {
  border-color: var(--jw-brand, var(--jw-primary));
  color: var(--jw-heading, var(--jw-primary));
  background: color-mix(in srgb, var(--jw-brand, var(--jw-primary)) 8%, var(--jw-bg));
}

.jw-catalog-chip.is-active {
  font-weight: 560;
}

.jw-catalog-count {
  margin-right: auto;
  font-size: 0.82rem;
  font-weight: 560;
  color: var(--jw-heading, var(--jw-primary));
  font-variant-numeric: tabular-nums;
}

.jw-catalog-sort span {
  display: none;
}

.jw-catalog-head {
  gap: 0.55rem 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
}

.jw-catalog-main {
  min-width: 0;
  flex: 1;
}

.jw-catalog-catrail-wrap {
  margin-bottom: 1.25rem;
}

.jw-catalog-catrail {
  gap: 0.55rem !important;
  padding-bottom: 0.15rem !important;
}

.jw-catalog-catrail > .jw-catalog-catpill {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.jw-catalog-catpill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  background: var(--jw-bg);
  color: var(--jw-body);
  font-family: inherit;
  font-size: 0.8rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms var(--jw-ease), color 160ms var(--jw-ease), border-color 160ms var(--jw-ease);
}

.jw-catalog-catpill:hover,
.jw-catalog-catpill.is-active {
  border-color: var(--jw-brand);
  background: var(--jw-brand);
  color: var(--jw-on-primary);
}

html.dark .jw-catalog-catpill.is-active,
html.dark .jw-catalog-catpill:hover {
  color: var(--jw-on-primary);
}

.jw-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.jw-catalog-cats {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jw-catalog-cats button {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid var(--jw-border);
  background: transparent;
  padding: 0.35rem 0;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--jw-body);
  text-align: left;
  cursor: pointer;
}

.jw-catalog-cats button.is-active,
.jw-catalog-cats button:hover {
  color: var(--jw-primary);
}

.jw-catalog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--jw-border);
}

.jw-catalog-count {
  margin-right: auto;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-catalog-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-catalog-sort select {
  min-height: 40px;
  height: 40px;
  border: 1px solid var(--jw-border);
  background: #fff;
  padding: 0 0.75rem;
  font-family: inherit;
  font-size: 0.8125rem;
  color: var(--jw-primary);
  cursor: pointer;
  box-sizing: border-box;
}

.jw-catalog-views {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .jw-catalog-views {
    display: inline-flex;
  }
}

.jw-catalog-views button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--jw-border);
  border-radius: var(--jw-radius-sm);
  background: var(--jw-bg);
  color: var(--jw-muted);
  cursor: pointer;
}

.jw-catalog-views button.is-active,
.jw-catalog-views button:hover {
  border-color: var(--jw-primary);
  color: var(--jw-primary);
}

.jw-catalog-price-label {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.8125rem;
  color: var(--jw-body);
}

.jw-catalog-range {
  display: grid;
  gap: 0.35rem;
}

.jw-catalog-range input[type="range"] {
  width: 100%;
  accent-color: var(--jw-primary);
}

.jw-catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.jw-grid[data-cols="2"] {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .jw-grid[data-cols="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .jw-grid[data-cols="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .jw-grid[data-cols="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .jw-grid[data-cols="3"],
  .jw-grid[data-cols="4"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Cart —— */
.jw-cart__body {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.jw-cart__heading {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-cart__empty {
  text-align: center;
  padding: 3rem 1rem;
}

.jw-cart__empty p {
  margin: 0 0 1.5rem;
  color: var(--jw-muted);
}

.jw-cart__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1100px) {
  .jw-cart__layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem;
    align-items: start;
  }
}

.jw-cart__table-wrap {
  overflow-x: auto;
}

.jw-cart__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.jw-cart__table th {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--jw-border);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-muted);
  text-align: left;
}

.jw-cart__table td {
  padding: 1.15rem 0.75rem;
  border-bottom: 1px solid var(--jw-border);
  vertical-align: middle;
  font-size: 0.9rem;
  color: var(--jw-primary);
}

.jw-cart__product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.jw-cart__remove {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--jw-muted);
  cursor: pointer;
  flex-shrink: 0;
}

.jw-cart__remove:hover {
  color: var(--jw-discount);
}

.jw-cart__thumb {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--jw-light);
}

.jw-cart__thumb img {
  object-fit: cover;
}

.jw-cart__name {
  font-weight: 300;
  color: var(--jw-primary);
}

.jw-cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--jw-border);
}

.jw-cart__qty button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: var(--jw-primary);
}

.jw-cart__qty span {
  min-width: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
}

.jw-cart__totals {
  border: 1px solid var(--jw-border);
  background: var(--jw-light);
  padding: 1.5rem;
}

.jw-cart__totals h2 {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jw-primary);
}

.jw-cart__totals-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.jw-cart__totals-row--total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--jw-border);
  font-size: 1rem;
}

.jw-cart__checkout {
  display: flex;
  width: 100%;
  margin-top: 1.25rem;
}

.jw-cart__continue {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jw-muted);
  text-decoration: none;
}

.jw-cart__continue:hover {
  color: var(--jw-primary);
}

/* —— Checkout shell (restyle nested default form) —— */
.jw-checkout {
  background: var(--jw-bg) !important;
  background-color: var(--jw-bg) !important;
}

.jw-checkout__body {
  padding: 0 0 4rem;
  background: transparent !important;
}

.jw-checkout__body > .jw-co,
.jw-checkout__body > section {
  background: transparent !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.jw-co-crumb {
  border-bottom: 1px solid var(--jw-border);
  background: var(--jw-bg);
  padding: 0.85rem 0;
}

.jw-co-crumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-co-crumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  opacity: 0.45;
}

.jw-co-crumb a {
  color: inherit;
  text-decoration: none;
}

.jw-co-crumb a:hover {
  color: var(--jw-heading);
}

.jw-co-crumb [aria-current="page"] {
  color: var(--jw-heading);
  font-weight: 600;
}

/* —— Auth —— */
.jw-auth__body {
  padding: 2.5rem 1rem 4rem;
  display: flex;
  justify-content: center;
}

.jw-auth__card {
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--jw-border);
  background: var(--jw-bg);
  border-radius: calc(var(--jw-radius) + 6px);
  padding: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .jw-auth__card {
    padding: 2.5rem 2.5rem;
  }
}

.jw-auth__title {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-auth__tabs {
  display: flex;
  border: 1px solid var(--jw-border);
  margin-bottom: 1.25rem;
}

.jw-auth__tabs button {
  flex: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jw-muted);
  cursor: pointer;
  line-height: 1.2;
  padding-inline: 0.5rem;
}

.jw-auth__tabs button.is-active {
  background: var(--jw-brand, var(--jw-primary));
  color: var(--jw-on-primary);
}

.jw-auth__msg {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border: 1px solid var(--jw-border);
}

.jw-auth__msg--error {
  border-color: #f5c2c0;
  background: #fff5f5;
  color: #b42318;
}

.jw-auth__msg--ok {
  border-color: #c6e7c6;
  background: #f4fff4;
  color: #17663a;
}

.jw-auth__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jw-auth__field {
  display: block;
}

.jw-auth__field span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-auth__field em {
  color: var(--jw-discount);
  font-style: normal;
}

.jw-auth__field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--jw-border);
  background: var(--jw-bg);
  border-radius: var(--jw-radius-sm);
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--jw-primary);
}

.jw-auth__field input:focus {
  outline: none;
  border-color: var(--jw-primary);
}

.jw-auth__code {
  letter-spacing: 0.3em;
  text-align: center;
}

.jw-auth__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.jw-auth__link,
.jw-auth__switch {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--jw-muted);
  cursor: pointer;
  padding: 0.35rem;
}

.jw-auth__link:hover,
.jw-auth__switch:hover {
  color: var(--jw-primary);
}

.jw-auth__social {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--jw-border);
}

.jw-auth-oauth {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.jw-auth-oauth--google {
  border: 1px solid #dadce0;
  background: #ffffff;
  color: #3c4043;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.jw-auth-oauth--google:hover {
  background: #f8f9fa;
  border-color: #d2d4d8;
}

.jw-auth-oauth--facebook {
  border: 1px solid #1877f2;
  background: #1877f2;
  color: #ffffff;
}

.jw-auth-oauth--facebook:hover {
  background: #166fe5;
  border-color: #166fe5;
}

.jw-auth__head {
  text-align: center;
}

.jw-auth__subtitle {
  margin: -1rem 0 1rem;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--jw-muted);
}

.jw-auth__mode-pills {
  display: flex;
  gap: 0.35rem;
  padding: 0.25rem;
  margin-bottom: 1rem;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--jw-border) 28%, transparent);
}

.jw-auth__mode-pills button {
  flex: 1;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--jw-muted);
  cursor: pointer;
  line-height: 1.2;
  padding-inline: 0.5rem;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.jw-auth__mode-pills button.is-active {
  background: var(--jw-surface, #fff);
  color: var(--jw-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.jw-auth__modal-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.jw-auth__modal-top-spacer {
  flex: 1;
  min-width: 0;
}

.jw-auth__modal-top .jw-auth__mode-pills {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

.jw-auth__modal-top .jw-auth-modal__close {
  position: static;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.jw-auth__tabs--compact {
  margin-bottom: 0.85rem;
  border-radius: 999px;
  overflow: hidden;
}

.jw-auth__tabs--compact button {
  min-height: 36px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.jw-auth__divider span {
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
}

.jw-auth__form--compact {
  gap: 0.65rem;
}

.jw-auth__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  margin-top: -0.15rem;
}

.jw-auth__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0.75rem;
  color: var(--jw-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jw-auth__divider::before,
.jw-auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--jw-border);
}

.jw-auth__social--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.jw-auth-oauth--compact {
  min-height: 40px;
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  gap: 0.45rem;
  border-radius: 12px;
}

.jw-auth-oauth--compact svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 360px) {
  .jw-auth__social--compact {
    grid-template-columns: 1fr;
  }
}

/* —— About / Contact / FAQ / Stories / 404 —— */
.jw-about__body,
.jw-contact__body,
.jw-faq__body,
.jw-stories__body,
.jw-content__body,
.jw-404__body {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.jw-about__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.jw-about__heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-about__heading p {
  margin: 0 auto;
  max-width: none;
  font-weight: 300;
  color: var(--jw-muted);
}

.jw-about__prose {
  max-width: none;
  width: 100%;
  margin: 0;
  font-weight: 300;
  line-height: 1.8;
  color: var(--jw-body);
}

.jw-about__prose h1,
.jw-about__prose .font-serif {
  font-family: var(--jw-font) !important;
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-contact__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.jw-contact__intro h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-contact__intro p {
  margin: 0 auto;
  max-width: none;
  font-weight: 300;
  color: var(--jw-muted);
}

.jw-contact__grid > div {
  margin-top: 0 !important;
}

.jw-contact .rounded-2xl,
.jw-contact [class*="rounded"] {
  border-radius: var(--jw-radius-sm) !important;
}

.jw-contact .font-serif {
  font-family: var(--jw-font) !important;
  font-weight: 400;
}

.jw-contact [class*="text-[#9C7E55]"] {
  color: var(--jw-muted) !important;
}

.jw-faq__heading {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-faq__list {
  max-width: none;
  width: 100%;
  margin: 0;
}

.jw-faq__item {
  border-bottom: 1px solid var(--jw-border);
}

.jw-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--jw-primary);
  cursor: pointer;
}

.jw-faq__q span {
  font-size: 1.25rem;
  color: var(--jw-muted);
}

.jw-faq__a {
  padding: 0 0 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--jw-body);
  font-size: 0.9rem;
}

.jw-stories__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.jw-stories__intro h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-stories__intro p {
  margin: 0;
  font-weight: 300;
  color: var(--jw-muted);
}

.jw-stories__grid-shell .page-container {
  max-width: none;
  padding: 0;
  margin: 0;
}

.jw-stories__grid-shell .page-container > *:first-child {
  display: none;
}

.jw-stories .rounded-xl {
  border-radius: var(--jw-radius-sm) !important;
}

.jw-stories .font-serif {
  font-family: var(--jw-font) !important;
  font-weight: 400;
}

.jw-stories [class*="text-[#9C7E55]"] {
  color: var(--jw-muted) !important;
}

.jw-404__body {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.jw-404__code {
  margin: 0 0 0.5rem;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--jw-primary);
}

.jw-404__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--jw-primary);
}

.jw-404__text {
  margin: 0 0 2rem;
  font-weight: 300;
  color: var(--jw-muted);
}

.jw-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* —— PDP tabs —— */
.jw-pdp__tabs {
  margin-top: 3rem;
  border-top: 1px solid var(--jw-border);
  padding-top: 0;
  background: var(--jw-bg);
}

.jw-pdp__tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--jw-border);
  list-style: none;
  margin: 0;
  padding: 0;
}

.jw-pdp__tab {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jw-muted);
  cursor: pointer;
}

.jw-pdp__tab.is-active {
  color: var(--jw-primary);
  border-bottom-color: var(--jw-primary);
}

.jw-pdp__tabpanel {
  padding: 1.5rem 0 0.5rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--jw-body);
}

.jw-pdp__tabpanel .jw-pdp__desc {
  margin-top: 0;
}

.jw-account__body,
.jw-story__body {
  padding: 2rem 0 4rem;
}

.jw-account__body > * {
  max-width: 100%;
}

.jw-story-article {
  background: var(--jw-bg) !important;
}

.jw-stories__intro {
  margin-bottom: 2rem;
  text-align: center;
}

.jw-stories__intro h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-stories__intro p {
  margin: 0 auto;
  max-width: 36rem;
  font-weight: 300;
  color: var(--jw-body);
}

.jw-stories__grid-shell .grid,
.jw-stories__grid-shell [class*="grid"] {
  gap: 1.5rem;
}

.jw-page-banner {
  background: var(--jw-light);
  border-bottom: 1px solid var(--jw-border);
  padding: 2rem 0 1.75rem;
  text-align: center;
}

.jw-page-banner h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--jw-primary);
}

.jw-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jw-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.jw-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.jw-breadcrumb a:hover {
  color: var(--jw-primary);
}

.jw-page-banner__title {
  margin: 0.65rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--jw-primary);
}

.jw-catalog__body,
.jw-cart__body,
.jw-checkout__body,
.jw-contact__body,
.jw-about__body,
.jw-faq__body,
.jw-content__body {
  padding: 2rem 0 4rem;
}

@media (prefers-reduced-motion: reduce) {
  .jw-banner__bg,
  .jw-pc__media img,
  .jw-pc__cart,
  .jw-cat__img img,
  .jw-journal-card__img img,
  .jw-ig img,
  .jw-mobile__panel,
  .jw-mobile__backdrop,
  .jw-btn,
  .jw-hero__bg,
  .jw-hero__img,
  .jw-hero__content {
    transition: none !important;
    animation: none !important;
  }
  .jw-banner:hover .jw-banner__bg,
  .jw-pc:hover .jw-pc__media img,
  .jw-cat:hover .jw-cat__img img,
  .jw-journal-card:hover .jw-journal-card__img img,
  .jw-ig a:hover img,
  .jw-hero__slide:hover .jw-hero__bg,
  .jw-hero__slide:hover .jw-hero__img {
    transform: none !important;
  }
}

/* —— Jewelry visual polish (v1.1) —— */
.jw-stories__intro {
  display: none !important;
}

.jw-catalog__body,
.jw-cart__body,
.jw-checkout__body,
.jw-contact__body,
.jw-about__body,
.jw-faq__body,
.jw-content__body,
.jw-auth__body,
.jw-stories__body,
.jw-story__body,
.jw-404__body {
  padding-top: 2rem;
}

.jw-heading h2 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.jw-pc {
  transition: transform 280ms var(--jw-ease);
}

.jw-pc:hover {
  transform: translateY(-4px);
}

.jw-footer {
  background: var(--jw-bg);
  color: var(--jw-body);
  border-top: 1px solid var(--jw-border);
}

.jw-footer h3 {
  color: var(--jw-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}

.jw-footer a {
  color: var(--jw-body);
}

.jw-footer a:hover {
  color: var(--jw-primary);
}

.jw-footer__logo span {
  color: var(--jw-muted);
}

.jw-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--jw-border);
  color: var(--jw-primary);
  transition: border-color 200ms var(--jw-ease), color 200ms var(--jw-ease), background 200ms var(--jw-ease);
}

.jw-footer__social a:hover {
  border-color: var(--jw-primary);
  color: var(--jw-primary);
  background: var(--jw-light);
}

.jw-footer__bottom {
  border-top-color: var(--jw-border);
  color: var(--jw-muted);
}

.jw-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.jw-mobile__logo {
  display: inline-flex;
  align-items: center;
  max-width: min(70%, 11rem);
  min-width: 0;
}

.jw-mobile__logo img {
  display: block;
  max-height: 2.25rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.jw-mobile__tools {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--jw-border);
}

.jw-auth,
.jw-cart,
.jw-checkout,
.jw-catalog,
.jw-about,
.jw-contact,
.jw-faq,
.jw-stories,
.jw-content,
.jw-404 {
  background: var(--jw-bg);
}

.jw-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .jw-section {
    padding: 5.25rem 0;
  }
}

/* Rounded chrome polish */
.jw-product-card,
.jw-product-card__media,
.jw-product-card img,
.jw-story-card,
.jw-collection-card {
  border-radius: var(--jw-radius);
}

.jw-hero,
.jw-hero__slide,
.jw-hero img,
.jw-footer {
  border-radius: 0 !important;
}

html.dark body:has([data-theme-pack="jewelry"]),
html.dark:has([data-theme-pack="jewelry"]) body {
  background-color: var(--jw-bg) !important;
  color: var(--jw-body);
}

:root:has([data-theme-pack="jewelry"]) body,
body:has([data-theme-pack="jewelry"]) {
  background-color: var(--jw-bg);
}

.jw-heading--decor h2::after {
  background: var(--jw-accent);
}

.jw-section {
  position: relative;
}

.jw-catalog,
.jw-pdp,
.jw-content,
.jw-about,
.jw-contact,
.jw-faq,
.jw-stories,
.jw-cart,
.jw-checkout,
.jw-auth {
  --jw-local-pad: var(--jw-page-pad);
}

.jw-catalog .jw-container,
.jw-pdp .jw-container,
.jw-content .jw-container,
.jw-about .jw-container,
.jw-contact .jw-container,
.jw-faq .jw-container,
.jw-stories .jw-container,
.jw-cart .jw-container,
.jw-checkout .jw-container,
.jw-auth .jw-container,
.jw-section .jw-container,
.jw-footer .jw-container,
.jw-header .jw-container,
.jw-hero .jw-container {
  padding-left: var(--jw-page-pad) !important;
  padding-right: var(--jw-page-pad) !important;
}

/* —— Professional dark theme (contrast-safe) —— */
html.dark .jw-btn,
html.dark .jw-pdp__buy,
html.dark .jw-pdp__add.jw-btn,
html.dark .jw-pc__cart,
html.dark .jw-auth__tabs button.is-active,
html.dark .jw-auth__submit {
  background: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

html.dark .jw-btn--outline {
  background: transparent;
  color: var(--jw-brand) !important;
  border-color: var(--jw-brand);
}

html.dark .jw-btn--outline:hover {
  background: var(--jw-brand);
  color: var(--jw-on-primary) !important;
}

html.dark .jw-catalog-filters,
html.dark .jw-catalog-views button,
html.dark .jw-catalog-chip,
html.dark .jw-pdp__qty-ctl,
html.dark .jw-catalog-sort select {
  background: var(--jw-light);
  border-color: var(--jw-border);
  color: var(--jw-primary);
}

html.dark .jw-catalog-sort select option {
  background: #1a1a1a;
  color: #f4f4f4;
}

html.dark .jw-catalog-cats button {
  color: var(--jw-body);
  border-bottom-color: var(--jw-border);
}

html.dark .jw-catalog-cats button.is-active,
html.dark .jw-catalog-cats button:hover {
  color: var(--jw-primary);
}

html.dark .jw-action {
  color: var(--jw-primary);
}

html.dark .jw-action:hover {
  background: rgba(255, 255, 255, 0.08);
}

html.dark .jw-mobile__panel {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
  color: var(--jw-body);
}

html.dark .jw-pc__media,
html.dark .jw-cat__img {
  background: var(--jw-light);
}

html.dark .jw-footer {
  background: #0a0a0a;
}

html.dark .jw-rail__arrow {
  background: var(--jw-light);
  border-color: var(--jw-border);
  color: var(--jw-primary);
}

html.dark .jw-catalog-filters__prices input[type="number"],
html.dark .jw-catalog-range input[type="range"] {
  accent-color: var(--jw-primary);
  color: var(--jw-primary);
}

html.dark .jw-pdp__crumb,
html.dark .jw-pdp__crumb a {
  color: var(--jw-muted);
}

html.dark .jw-pdp__crumb a:hover {
  color: var(--jw-primary);
}

html.dark .lang-switch {
  color: var(--jw-primary) !important;
}

html.dark .lang-switch__menu {
  background: var(--jw-surface, #1a1a1a) !important;
  border-color: var(--jw-border, rgba(255, 255, 255, 0.15)) !important;
  color: var(--jw-primary, #f5f5f5) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45) !important;
}

html.dark .lang-switch__menu a,
html.dark .lang-switch__item,
html.dark .lang-switch__code {
  color: var(--jw-primary, #f5f5f5) !important;
}

html.dark .lang-switch__menu a:hover,
html.dark .lang-switch__item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--jw-primary, #ffffff) !important;
}

/* —— App shell + mobile chrome —— */
body.jw-app {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: var(--jw-body);
}

html.dark body.jw-app {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
}

body.jw-app .jw-header,
body.jw-app .jw-footer,
body.jw-app .jw-hero,
body.jw-app .app-main {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-left: 0;
  border-right: 0;
}

@media (min-width: 1024px) {
  :root:has([data-theme-pack="jewelry"]),
  [data-theme-pack="jewelry"],
  body.jw-app {
    --jw-page-pad: clamp(2.5rem, 6vw, 5rem);
  }
}

@media (max-width: 1023px) {
  .jw-header__lang,
  .jw-header__theme {
    display: none !important;
  }

  html:has(body.jw-app),
  body.jw-app {
    overscroll-behavior-y: none;
  }

  body.jw-app .app-main {
    padding-bottom: 0 !important;
  }

  body.jw-app .jw-footer {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .jw-catalog__body,
  .jw-pdp .jw-container,
  .jw-cart__body,
  .jw-checkout__body,
  .jw-content__body,
  .jw-about__body,
  .jw-contact__body,
  .jw-faq__body,
  .jw-stories__body,
  .jw-auth__body {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .jw-section {
    padding: 3rem 0;
  }

  .jw-hero__slide {
    min-height: min(72vh, 560px);
  }

  .jw-hero__content {
    padding: 3rem 0 3.5rem;
  }
}

.jw-mobile__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.jw-cat__placeholder,
.jw-journal-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: linear-gradient(145deg, #f3f3f3, #ececec);
  color: #d8d8d8;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.jw-newsletter__body {
  margin: 0 0 1.25rem;
  font-weight: 300;
  font-size: 0.9rem;
}

.jw-newsletter__done {
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-tabbar {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  border-top: 1px solid var(--jw-border);
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  pointer-events: auto;
}

.jw-tabbar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  max-width: 32rem;
  margin: 0 auto;
  padding: 0.5rem 0.4rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
}

.jw-tabbar__item {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 3.25rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--jw-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms var(--jw-ease), background 180ms var(--jw-ease), transform 160ms var(--jw-ease);
}

.jw-tabbar__item:active {
  transform: scale(0.96);
}

.jw-tabbar__item.is-active {
  color: var(--jw-primary);
  background: var(--jw-light);
}

.jw-tabbar__icon {
  position: relative;
  display: inline-flex;
}

.jw-tabbar__label {
  max-width: 4.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jw-tabbar__badge {
  position: absolute;
  top: -0.35rem;
  right: -0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--jw-brand, var(--jw-primary));
  color: var(--jw-on-primary);
  font-size: 0.58rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .jw-tabbar {
    display: none !important;
  }
}

html.dark body.jw-app {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
}

html.dark .jw-header {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
  border-bottom-color: var(--jw-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 32px rgba(0, 0, 0, 0.35);
}

html.dark .jw-section--light,
html.dark .jw-newsletter,
html.dark .jw-quotes {
  background: var(--jw-light);
}

html.dark .jw-quote,
html.dark .jw-banner,
html.dark .jw-journal-card {
  background: var(--jw-light);
  border-color: var(--jw-border);
}

html.dark .jw-pc,
html.dark .jw-pc__body,
html.dark .jw-pc__media,
html.dark .jw-pc__placeholder {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

html.dark .jw-footer {
  background: #0f0f0f;
  border-top-color: color-mix(in srgb, var(--jw-accent) 22%, transparent);
}

html.dark .jw-tabbar {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
  border-top-color: var(--jw-border);
}

html.dark .jw-mobile__panel {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}

html.dark .jw-hero__veil {
  background: linear-gradient(
    90deg,
    rgba(12, 11, 10, 0.52) 0%,
    rgba(12, 11, 10, 0.28) 26%,
    rgba(12, 11, 10, 0.1) 46%,
    rgba(12, 11, 10, 0) 68%
  );
}

@media (max-width: 767px) {
  html.dark .jw-hero__veil {
    background: linear-gradient(
      180deg,
      rgba(12, 11, 10, 0) 0%,
      rgba(12, 11, 10, 0.12) 38%,
      rgba(12, 11, 10, 0.42) 72%,
      rgba(12, 11, 10, 0.55) 100%
    );
  }
}

.jw-footer {
  width: 100%;
}

/* —— Jewelry visual polish v1.2 —— */
.jw-heading--left {
  text-align: left;
  margin-bottom: 1.5rem;
}

.jw-heading--left h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jw-section__actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.jw-empty-hint {
  font-size: 0.875rem;
  color: var(--jw-muted);
}

.jw-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.05) 0%, rgba(8, 8, 8, 0.42) 100%);
  pointer-events: none;
}

.jw-banner--light .jw-banner__veil {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.55) 100%);
}

.jw-link--on-media {
  color: inherit;
  border-color: currentColor;
  opacity: 0.92;
}

.jw-banners--mosaic {
  grid-template-columns: repeat(2, 1fr);
}

.jw-banners--mosaic .jw-banner:first-child {
  grid-row: span 2;
  min-height: 100%;
}

.jw-banners--stack {
  grid-template-columns: 1fr;
}

.jw-banners--stack .jw-banner {
  min-height: 260px;
}

.jw-banners--hero {
  grid-template-columns: 1fr;
}

.jw-banners--hero .jw-banner--feature {
  min-height: min(62vh, 520px);
}

.jw-banners--hero .jw-banner:not(.jw-banner--feature) {
  min-height: 240px;
}

@media (min-width: 768px) {
  .jw-banners--hero {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: repeat(2, minmax(180px, 1fr));
  }

  .jw-banners--hero .jw-banner--feature {
    grid-row: span 2;
    min-height: 100%;
  }
}

.jw-banners--cinema .jw-banner {
  min-height: min(48vh, 420px);
}

.jw-cats-rail-wrap {
  padding-left: var(--jw-page-pad);
  padding-right: var(--jw-page-pad);
}

.jw-cats-rail-wrap .jw-rail {
  max-width: 100%;
}

.jw-cats-rail-wrap .jw-scroll.jw-cats {
  padding-right: 0;
  scroll-padding-inline: 0;
}

.jw-cats--cards .jw-cat {
  width: 148px;
  align-items: stretch;
}

.jw-cats--cards .jw-cat__img {
  width: 148px;
  height: 188px;
  border-radius: 14px;
  margin-bottom: 0;
}

.jw-cats--cards .jw-cat__card-cap {
  position: absolute;
  inset: auto 0 0;
  padding: 0.65rem 0.5rem;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.72));
}

.jw-cats--cards .jw-cat {
  position: relative;
}

.jw-cats--cards .jw-cat__label {
  color: #fff;
  margin: 0;
}

.jw-cats--chips .jw-cat {
  width: auto;
}

.jw-cat__chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  background: var(--jw-bg);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms var(--jw-ease), border-color 180ms var(--jw-ease), transform 160ms var(--jw-ease);
}

.jw-cat:hover .jw-cat__chip {
  border-color: var(--jw-primary);
  background: var(--jw-light);
  transform: translateY(-1px);
}

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

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

.jw-product-featured {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .jw-product-featured {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    align-items: stretch;
  }
}

.jw-pc-wrap--hero .jw-pc {
  height: 100%;
}

.jw-pc-wrap--hero .jw-pc__media {
  aspect-ratio: 4 / 5;
}

.jw-quotes--centered {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.jw-quotes--centered .jw-quote footer {
  justify-content: center;
}

.jw-quotes--slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.jw-quotes--slider > .jw-quote {
  flex: 0 0 min(88vw, 320px);
  scroll-snap-align: start;
}

.jw-features--grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.jw-section--band {
  background: var(--jw-primary);
  color: var(--jw-on-primary);
}

.jw-features--band li h3,
.jw-features--band li p {
  color: inherit;
}

.jw-features__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.5;
}

.jw-ig--mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 0.65rem;
}

.jw-ig--mosaic a:first-child {
  grid-row: span 2;
  grid-column: span 2;
}

.jw-ig-marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.jw-ig--marquee {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  animation: jw-marquee 28s linear infinite;
}

.jw-ig--marquee a {
  flex: 0 0 140px;
  height: 140px;
}

@keyframes jw-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.jw-newsletter--split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .jw-newsletter--split {
    grid-template-columns: 1fr 1.1fr;
  }
}

.jw-newsletter--inset {
  border: 1px solid var(--jw-border);
  border-radius: calc(var(--jw-radius) + 6px);
  padding: 2rem 1.5rem;
  background: var(--jw-bg);
  box-shadow: none;
}

.jw-journal--editorial .jw-journal {
  display: grid;
  gap: 1rem;
}

.jw-related {
  margin-top: 2.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--jw-border);
}

.jw-related__rail {
  display: flex;
  flex-wrap: nowrap;
}

.jw-related__rail > .jw-pc {
  flex: 0 0 min(74vw, 250px);
}

@media (min-width: 900px) {
  .jw-related__rail > .jw-pc {
    flex-basis: min(22vw, 260px);
  }

  .jw-journal--editorial .jw-journal {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .jw-journal-card--lead {
    grid-row: span 2;
  }

  .jw-journal-card--lead .jw-journal-card__img {
    min-height: 100%;
  }
}

.jw-related__desktop {
  display: none;
}

.jw-related__mobile {
  display: block;
}

.jw-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.jw-heading h2 {
  font-weight: 300;
}

.jw-pc {
  border-radius: calc(var(--jw-radius) + 2px);
  transition: transform 220ms var(--jw-ease), box-shadow 220ms var(--jw-ease);
}

.jw-pc:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.jw-quote {
  border: 1px solid var(--jw-border);
  border-radius: calc(var(--jw-radius) + 4px);
  padding: 1.5rem;
  background: var(--jw-bg);
}

@media (min-width: 768px) {
  .jw-cat__img {
    width: 124px;
    height: 124px;
  }

  .jw-cats--rail > .jw-cat,
  .jw-scroll.jw-cats > .jw-cat,
  .jw-cat {
    width: 136px;
  }

  .jw-cats--cards .jw-cat,
  .jw-cats--cards .jw-cat__img {
    width: 168px;
  }

  .jw-cats--cards .jw-cat__img {
    height: 212px;
  }

  .jw-cats--centered-desktop {
    justify-content: center !important;
  }

  .jw-rail--centered-desktop .jw-rail__arrow {
    display: inline-flex !important;
  }
}

@media (max-width: 767px) {
  .jw-cats-rail-wrap .jw-scroll.jw-cats {
    justify-content: flex-start !important;
    scroll-snap-type: x mandatory;
  }

  .jw-cats--centered-desktop {
    justify-content: flex-start !important;
  }

  body.jw-app .jw-pdp__info,
  body.jw-app .jw-catalog-filters,
  body.jw-app .jw-account__panel,
  body.jw-app .jw-auth__card,
  body.jw-app .jw-contact__card,
  body.jw-app .jw-quote,
  body.jw-app .jw-newsletter {
    border-radius: calc(var(--jw-radius) + 4px);
  }

  body.jw-app .jw-section {
    padding: 2.25rem 0;
  }

  body.jw-app .jw-pdp__grid {
    gap: 1.25rem;
  }

  body.jw-app .jw-pdp__tabs {
    margin-top: 1rem;
    padding: 0.85rem 0.85rem 1rem;
  }

  body.jw-app .jw-pdp__tablist {
    padding: 0.4rem;
    margin-bottom: 1rem;
  }

  body.jw-app .jw-pdp__tab {
    min-height: 44px;
    padding: 0.6rem 0.75rem;
    font-size: 0.72rem;
  }

  body.jw-app .jw-pdp__tabpanel {
    padding-top: 0.35rem;
  }

  body.jw-app .jw-pc__type {
    font-size: 0.6rem;
  }

  body.jw-app .jw-pc__title {
    font-size: 0.86rem;
  }

  body.jw-app .jw-pc__price {
    font-size: 0.82rem;
  }
}

/* —— Jewelry full theme polish (v1.3) —— */
.jw-cart--loading {
  min-height: 40vh;
}

.jw-cart__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.jw-cart__heading {
  margin: 0;
  text-align: left;
}

.jw-cart__count {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-cart__empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  background: linear-gradient(145deg, #f3f3f3, #ececec);
}

.jw-cart__table-wrap {
  display: none;
}

.jw-cart__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.jw-cart__card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.9rem;
  padding: 0.9rem;
  border: 1px solid var(--jw-border);
  border-radius: calc(var(--jw-radius) + 4px);
  background: var(--jw-bg);
}

.jw-cart__card .jw-cart__thumb {
  width: 88px;
  height: 110px;
  border-radius: var(--jw-radius-sm);
}

.jw-cart__card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.jw-cart__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.jw-cart__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.jw-cart__qty {
  border-radius: var(--jw-radius-sm);
  overflow: hidden;
  background: var(--jw-light);
}

.jw-cart__totals {
  border-radius: calc(var(--jw-radius) + 4px);
  position: sticky;
  top: 6.5rem;
}

.jw-cart__checkout {
  border-radius: 999px;
  justify-content: center;
}

@media (min-width: 900px) {
  .jw-cart__cards {
    gap: 1rem;
  }

  .jw-cart__card {
    grid-template-columns: 104px 1fr;
    padding: 1.1rem;
  }
}

.jw-pdp__gallery .jw-pgallery__scroller {
  box-shadow: none !important;
}

.jw-pdp__gallery .jw-pgallery__frame {
  background: linear-gradient(145deg, #f3f3f3, #ececec) !important;
}

.jw-cta__panel {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--jw-border);
  border-radius: calc(var(--jw-radius) + 6px);
  background: var(--jw-light);
}

.jw-cta__copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-cta__copy p {
  margin: 0;
  font-weight: 300;
  color: var(--jw-body);
  line-height: 1.6;
}

.jw-cta--split .jw-cta__panel {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .jw-cta--split .jw-cta__panel {
    grid-template-columns: 1.4fr auto;
  }
}

.jw-cta--band .jw-cta__panel {
  background: var(--jw-primary);
  border-color: var(--jw-primary);
  color: var(--jw-on-primary);
}

.jw-cta--band .jw-cta__copy h2,
.jw-cta--band .jw-cta__copy p {
  color: inherit;
}

.jw-cta--band .jw-btn {
  background: var(--jw-on-primary);
  color: var(--jw-primary);
  border-color: var(--jw-on-primary);
}

.jw-collection-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.jw-collection-header h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-auth__tabs {
  border-radius: var(--jw-radius-sm);
  overflow: hidden;
}

.jw-auth__tabs button.is-active {
  background: var(--jw-brand);
  color: var(--jw-on-primary);
}

.jw-checkout__body {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}

.jw-checkout__body form,
.jw-checkout__body [class*="rounded"],
.jw-account__body [class*="rounded-2xl"],
.jw-contact [class*="rounded-2xl"] {
  border-radius: calc(var(--jw-radius) + 4px) !important;
}

.jw-checkout__body button[type="submit"] {
  border-radius: 999px !important;
  min-height: 48px !important;
}

.jw-checkout__body button[type="submit"]:hover {
  background: var(--jw-brand) !important;
  filter: brightness(1.05);
}

.jw-faq__item summary,
.jw-faq__item button {
  min-height: 52px;
}

.jw-404__body {
  text-align: center;
  padding: 4rem 1rem 5rem;
}

.jw-404__body h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--jw-primary);
}

.jw-hero__content h1,
.jw-hero__title {
  letter-spacing: 0.02em;
}

.jw-catalog-filters {
  border-radius: calc(var(--jw-radius) + 4px);
}

.jw-catalog-filter-btn,
.jw-catalog-catpill {
  border-radius: 999px;
}

.jw-newsletter__form input {
  border-radius: var(--jw-radius-sm);
}

.jw-newsletter__form .jw-btn {
  border-radius: 999px;
}

.jw-journal-card,
.jw-banner,
.jw-quote,
.jw-pc {
  border-radius: calc(var(--jw-radius) + 2px);
}

.jw-pc__media {
  border-radius: calc(var(--jw-radius) + 2px);
  background: linear-gradient(145deg, #f3f3f3, #ececec);
}

html.dark .jw-pc__media,
html.dark .jw-pc__placeholder,
html.dark .jw-cat__placeholder,
html.dark .jw-journal-card__placeholder,
html.dark .jw-cart__empty-icon,
html.dark .jw-pdp__gallery .jw-pgallery__frame {
  background: linear-gradient(145deg, #1c1c1c, #161616) !important;
  color: #3a3a3a;
}

html.dark .jw-auth__msg--error {
  border-color: #5c2b2b;
  background: #2a1515;
  color: #f0b4b0;
}

html.dark .jw-auth__msg--ok {
  border-color: #2f5a3a;
  background: #142018;
  color: #9fd4ad;
}

@media (max-width: 767px) {
  .jw-page-banner {
    padding: 1rem 0 1.15rem;
  }

  .jw-page-banner__title {
    font-size: 1.35rem;
  }

  .jw-cart__totals {
    position: static;
  }

  .jw-auth__body {
    padding-top: 1.25rem;
  }

  .jw-checkout__body,
  .jw-account__body,
  .jw-about__body,
  .jw-contact__body,
  .jw-faq__body,
  .jw-stories__body {
    padding-bottom: 2.5rem;
  }

  .jw-btn {
    min-height: 46px;
  }
}

/* —— Cart drawer (above header + tabbar) —— */
.jw-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--jw-drawer-z);
  border: 0;
  background: rgba(10, 10, 10, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--jw-ease);
}

.jw-drawer__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.jw-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--jw-drawer-z) + 1);
  display: flex;
  flex-direction: column;
  width: min(100vw, 26rem);
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-left: 1px solid var(--jw-border);
  transform: translateX(100%);
  transition: transform 280ms var(--jw-ease);
  overflow: hidden;
}

.jw-drawer.is-open {
  transform: translateX(0);
}

html.dark .jw-drawer {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
}

.jw-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--jw-border);
  background: inherit;
}

.jw-drawer__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--jw-primary);
}

.jw-drawer__count {
  margin-left: 0.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--jw-muted);
  letter-spacing: 0;
  text-transform: none;
}

.jw-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--jw-border);
  border-radius: 999px;
  background: var(--jw-light);
  color: var(--jw-primary);
  cursor: pointer;
}

.jw-drawer__cols,
.jw-drawer__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.jw-drawer__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem 1.15rem;
  -webkit-overflow-scrolling: touch;
}

.jw-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jw-drawer__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  padding: 0.75rem;
  border: 1px solid var(--jw-border);
  border-radius: var(--jw-radius-sm);
  background: var(--jw-bg);
}

.jw-drawer__thumb {
  position: relative;
  width: 72px;
  height: 90px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #f3f3f3, #ececec);
}

.jw-drawer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jw-drawer__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.jw-drawer__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--jw-primary);
  line-height: 1.35;
}

.jw-drawer__price {
  margin: 0;
  font-size: 0.85rem;
  color: var(--jw-body);
}

.jw-drawer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.jw-drawer__remove {
  border: 0;
  background: transparent;
  color: var(--jw-muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.jw-drawer__remove:hover {
  color: var(--jw-discount);
}

.jw-drawer__hint,
.jw-drawer__empty {
  margin: 0;
  padding: 2.5rem 0.5rem;
  text-align: center;
  color: var(--jw-muted);
  font-weight: 300;
}

.jw-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.jw-drawer__foot {
  flex-shrink: 0;
  padding: 1rem 1.15rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--jw-border);
  background: #ffffff !important;
  background-color: #ffffff !important;
}

html.dark .jw-drawer__foot {
  background: #0f0f0f !important;
  background-color: #0f0f0f !important;
}

.jw-drawer__total {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--jw-body);
}

.jw-drawer__total strong {
  color: var(--jw-primary);
  font-size: 1.15rem;
  font-weight: 500;
}

.jw-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.jw-drawer__checkout {
  width: 100%;
  border-radius: 999px;
  justify-content: center;
  min-height: 50px;
}

.jw-drawer__view {
  display: block;
  text-align: center;
  padding: 0.55rem 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jw-muted);
  text-decoration: none;
}

.jw-drawer__view:hover {
  color: var(--jw-primary);
}

/* When cart is open: hide chrome that used to sit above the drawer.
   Tab bar uses opacity:1 !important — must override with !important. */
body.jw-cart-open .jw-tabbar,
body.jw-cart-open .jw-header,
body.jw-cart-open .jw-mobile {
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

body.jw-cart-open,
body.jw-menu-open {
  overflow: hidden;
}

body.jw-menu-open .jw-tabbar {
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* —— Jewelry 2026 redesign (no gold, app shell, dark contrast) —— */
body.jw-app {
  background: var(--jw-bg) !important;
  background-color: var(--jw-bg) !important;
  color: var(--jw-body);
}

/* Kill gold / warm utility leakage inside jewelry pack */
.jw-wrap [class*="text-[#9C7E55]"],
.jw-pdp [class*="text-[#9C7E55]"],
.jw-contact [class*="text-[#9C7E55]"],
.jw-stories [class*="text-[#9C7E55]"],
.jw-checkout [class*="text-[#9C7E55]"],
.jw-auth [class*="text-[#9C7E55]"] {
  color: var(--jw-primary) !important;
}
.jw-wrap [class*="border-[#9C7E55]"],
.jw-pdp [class*="border-[#9C7E55]"] {
  border-color: var(--jw-border) !important;
}
.jw-wrap [class*="bg-[#9C7E55]"],
.jw-pdp [class*="bg-[#9C7E55]"] {
  background: var(--jw-light) !important;
  color: var(--jw-primary) !important;
}

.jw-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
}
.jw-price__current {
  font-weight: 500;
  color: var(--jw-primary);
  letter-spacing: -0.02em;
}
.jw-price[data-size="lg"] .jw-price__current { font-size: 1.75rem; }
.jw-price[data-size="sm"] .jw-price__current { font-size: 1.05rem; }
.jw-price__currency { font-size: 0.65em; font-weight: 500; }
.jw-price__compare {
  color: var(--jw-muted);
  text-decoration: line-through;
  font-size: 0.92em;
}
.jw-price__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: var(--jw-discount) !important;
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.jw-pc__badge {
  background: var(--jw-primary);
  color: #fff;
}
.jw-pc__badge--sale {
  background: var(--jw-discount) !important;
  color: #fff !important;
}

.jw-header {
  background: var(--jw-bg) !important;
  background-color: var(--jw-bg) !important;
  border-bottom: 1px solid var(--jw-border);
  backdrop-filter: none !important;
}
html.dark .jw-header {
  background: var(--jw-bg) !important;
  background-color: var(--jw-bg) !important;
}

.jw-logo__text {
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--jw-primary);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.jw-nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--jw-body);
}
.jw-nav__links a:hover,
.jw-nav__links a[aria-current="page"] {
  color: var(--jw-accent, var(--jw-brand));
  background: transparent;
}

.jw-action {
  color: var(--jw-primary);
  border-radius: 999px;
}
.jw-action__bubble {
  background: var(--jw-brand);
  color: var(--jw-on-primary);
}

.jw-hero__slide {
  min-height: min(88vh, 780px);
}
.jw-hero__title {
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 12ch;
}
.jw-hero__sub {
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  max-width: 34ch;
  line-height: 1.65;
}
.jw-hero .jw-btn {
  border-radius: 999px;
  min-height: 48px;
  padding-inline: 1.5rem;
}

.jw-section {
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}
.jw-heading h2 {
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--jw-primary);
}
.jw-heading p {
  color: var(--jw-body);
  font-weight: 300;
}

.jw-pc { background: transparent; }
.jw-pc__media {
  border-radius: calc(var(--jw-radius) + 2px);
  background: linear-gradient(160deg, #f0f0f2, #e8e8ec);
  overflow: hidden;
}
html.dark .jw-pc__media {
  background: linear-gradient(160deg, #1a1a1f, #141417);
}
.jw-pc__media img { transition: transform 420ms var(--jw-ease); }
.jw-pc:hover .jw-pc__media img { transform: scale(1.04); }
.jw-pc__title { color: var(--jw-primary); font-weight: 500; }
.jw-pc__price { color: var(--jw-primary); font-weight: 500; }
.jw-pc__placeholder {
  background: #ececef !important;
  color: #b0b0b8 !important;
}
html.dark .jw-pc__placeholder {
  background: #1c1c21 !important;
  color: #6b6b75 !important;
}

.jw-grid[data-cols="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
}
@media (max-width: 1099px) {
  .jw-grid[data-cols="4"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .jw-grid[data-cols="3"],
  .jw-grid[data-cols="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.jw-page-banner {
  background: linear-gradient(180deg, var(--jw-light) 0%, var(--jw-bg) 100%);
  border-bottom: 0;
  padding: 1.35rem 0 1.5rem;
}
.jw-page-banner__title {
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jw-primary);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
}
.jw-page-banner__crumbs,
.jw-page-banner__crumbs a {
  color: var(--jw-muted);
}

.jw-btn {
  border-radius: 999px;
  letter-spacing: 0.12em;
  font-weight: 500;
  background: var(--jw-brand);
  color: var(--jw-on-primary);
  border: 1px solid var(--jw-brand);
}
.jw-btn:hover { opacity: 0.92; }
.jw-btn--outline {
  background: transparent;
  color: var(--jw-brand);
  border-color: var(--jw-brand);
}

.jw-catalog-filters {
  border: 1px solid var(--jw-border);
  background: var(--jw-surface) !important;
  border-radius: calc(var(--jw-radius) + 2px);
  padding: 1.15rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.jw-catalog-filters__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.jw-catalog-filters__title {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-primary);
  font-weight: 600;
}
.jw-catalog-filters__hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--jw-muted);
  font-weight: 300;
  line-height: 1.4;
}
.jw-catalog-filters__clear {
  border: 0;
  background: transparent;
  color: var(--jw-discount);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.jw-catalog-filters__group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--jw-border);
}
.jw-catalog-filters__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.jw-catalog-filters__label p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jw-primary);
  font-weight: 600;
}
.jw-catalog-filters__label span {
  font-size: 0.68rem;
  color: var(--jw-muted);
}
.jw-catalog-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.jw-catalog-cats button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--jw-border);
  border-radius: 12px;
  background: var(--jw-bg);
  color: var(--jw-body);
  cursor: pointer;
  text-align: left;
  font-size: 0.88rem;
}
.jw-catalog-cats button em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--jw-muted);
  min-width: 1.5rem;
  text-align: right;
}
.jw-catalog-cats button.is-active {
  border-color: var(--jw-brand);
  background: var(--jw-brand);
  color: var(--jw-on-primary);
}
.jw-catalog-cats button.is-active em {
  color: color-mix(in srgb, var(--jw-on-primary) 70%, transparent);
}

.jw-catalog-price-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--jw-muted);
}
.jw-catalog-price-meta strong {
  color: var(--jw-primary);
  font-size: 0.85rem;
  font-weight: 600;
}
.jw-catalog-range input[type="range"] {
  width: 100%;
  accent-color: var(--jw-primary);
}
.jw-catalog-filters__apply {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--jw-border);
  background: var(--jw-light);
  color: var(--jw-primary);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.jw-catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.jw-catalog-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--jw-border);
  background: var(--jw-bg);
  color: var(--jw-body);
  font-size: 0.78rem;
  cursor: pointer;
}
.jw-catalog-chip em {
  font-style: normal;
  color: var(--jw-muted);
  font-size: 0.7rem;
}
.jw-catalog-chip.is-active {
  background: var(--jw-brand);
  border-color: var(--jw-brand);
  color: var(--jw-on-primary);
}
.jw-catalog-chip.is-active em {
  color: color-mix(in srgb, var(--jw-on-primary) 72%, transparent);
}

.jw-catalog-active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
}
.jw-catalog-active__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--jw-border);
  background: var(--jw-surface);
  color: var(--jw-primary);
  font-size: 0.75rem;
  cursor: pointer;
}
.jw-catalog-active__chip em {
  font-style: normal;
  color: var(--jw-muted);
}
.jw-catalog-active__clear {
  border: 0;
  background: transparent;
  color: var(--jw-discount);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.jw-catalog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--jw-border);
  border-radius: var(--jw-radius);
  background: var(--jw-surface);
}
.jw-catalog-count {
  color: var(--jw-primary);
  font-weight: 500;
  font-size: 0.85rem;
}
.jw-catalog-sort span { color: var(--jw-muted); }
.jw-catalog-sort select {
  border-color: var(--jw-border);
  background: var(--jw-bg);
  color: var(--jw-primary);
  border-radius: 999px;
}
.jw-catalog-views button {
  color: var(--jw-muted);
  border-color: var(--jw-border);
}
.jw-catalog-views button.is-active {
  color: var(--jw-primary);
  border-color: var(--jw-primary);
  background: var(--jw-light);
}
.jw-catalog-filter-btn {
  border-radius: 999px;
  border: 1px solid var(--jw-border);
  background: var(--jw-bg);
  color: var(--jw-primary);
  box-sizing: border-box;
}
.jw-catalog-filter-btn__count {
  background: var(--jw-discount);
  color: #fff;
}

@media (max-width: 767px) {
  body.jw-app .jw-catalog-head,
  .jw-catalog-head {
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
  }

  body.jw-app .jw-catalog-filter-btn,
  .jw-catalog-filter-btn {
    flex: 0 0 auto;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    padding: 0 0.85rem;
    box-sizing: border-box;
  }

  body.jw-app .jw-catalog-count,
  .jw-catalog-count {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 0 !important;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.jw-app .jw-catalog-sort,
  .jw-catalog-sort {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(52%, 11.5rem);
    margin: 0;
  }

  body.jw-app .jw-catalog-sort select,
  .jw-catalog-sort select {
    display: block;
    width: 100%;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    padding: 0 0.85rem;
    box-sizing: border-box;
    line-height: 1;
  }
}

.jw-filter-sheet__panel {
  background: var(--jw-surface) !important;
}
.jw-filter-sheet__title { color: var(--jw-primary); }
.jw-filter-sheet__eyebrow { color: var(--jw-muted); }
.jw-filter-sheet__primary {
  background: var(--jw-primary);
  color: var(--jw-on-primary);
  border-radius: 999px;
}
.jw-filter-sheet__ghost {
  border-radius: 999px;
  color: var(--jw-primary);
  border: 1px solid var(--jw-border);
}

.jw-pdp__title { color: var(--jw-primary); font-weight: 400; }
.jw-pdp__excerpt { color: #3f3f46; }
.jw-pdp__crumb,
.jw-pdp__crumb a { color: var(--jw-body); }
.jw-pdp__type { color: var(--jw-muted); }
.jw-pdp__info { border: 0; background: transparent; }

.jw-auth__card,
.jw-cart__totals,
.jw-cart__card,
.jw-quote,
.jw-newsletter--inset,
.jw-cta__panel {
  background: var(--jw-surface) !important;
  border: 1px solid var(--jw-border);
  border-radius: calc(var(--jw-radius) + 2px);
  color: var(--jw-body);
}
.jw-cart__heading,
.jw-cart__name,
.jw-cart__totals h2,
.jw-auth__card h1,
.jw-auth__card h2 {
  color: var(--jw-primary);
}

.jw-tabbar {
  background: var(--jw-surface) !important;
  background-color: var(--jw-surface) !important;
  border-top: 1px solid var(--jw-border);
}
.jw-tabbar__item { color: var(--jw-muted); }
.jw-tabbar__item.is-active {
  color: var(--jw-primary);
  background: var(--jw-light);
}
.jw-tabbar__badge {
  background: var(--jw-brand);
  color: var(--jw-on-primary);
}

.jw-footer {
  background: #0a0a0b;
  color: rgba(255,255,255,0.72);
  border-top: 0;
  padding-top: 3.25rem;
}
.jw-footer h3 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.jw-footer a { color: rgba(255,255,255,0.68); }
.jw-footer a:hover { color: #fff; }
.jw-footer__bottom {
  border-top-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.42);
}
html.dark .jw-footer { background: #050506; }

.jw-drawer {
  background: var(--jw-surface) !important;
  background-color: var(--jw-surface) !important;
}
.jw-drawer__foot {
  background: var(--jw-surface) !important;
  background-color: var(--jw-surface) !important;
}
.jw-drawer__title,
.jw-drawer__name,
.jw-drawer__total strong { color: var(--jw-primary); }
.jw-drawer__checkout {
  background: var(--jw-primary);
  color: var(--jw-on-primary);
  min-height: 52px;
}

.jw-mobile__panel {
  background: var(--jw-surface) !important;
  background-color: var(--jw-surface) !important;
}
.jw-mobile__nav a {
  color: var(--jw-primary);
  border-bottom-color: var(--jw-border);
}

html.dark .jw-section--light,
html.dark .jw-newsletter,
html.dark .jw-quotes,
html.dark .jw-page-banner {
  background: var(--jw-bg);
}
html.dark .jw-quote,
html.dark .jw-banner,
html.dark .jw-journal-card,
html.dark .jw-auth__card,
html.dark .jw-cart__card,
html.dark .jw-cart__totals,
html.dark .jw-cta__panel,
html.dark .jw-catalog-filters,
html.dark .jw-catalog-head {
  background: var(--jw-surface) !important;
  color: var(--jw-body);
  border-color: var(--jw-border);
}
html.dark .jw-heading h2,
html.dark .jw-pc__title,
html.dark .jw-pc__price,
html.dark .jw-page-banner__title,
html.dark .jw-pdp__title,
html.dark .jw-cart__heading,
html.dark .jw-logo__text {
  color: var(--jw-primary) !important;
}
html.dark .jw-btn {
  background: var(--jw-brand);
  color: var(--jw-on-primary);
  border-color: var(--jw-brand);
}
html.dark .jw-btn--outline {
  background: transparent;
  color: var(--jw-brand);
  border-color: var(--jw-brand);
}
html.dark .jw-catalog-cats button {
  background: var(--jw-light);
  color: var(--jw-body);
}
html.dark .jw-catalog-cats button.is-active {
  background: var(--jw-brand);
  color: var(--jw-on-primary);
}

@media (max-width: 767px) {
  .jw-drawer { width: 100vw; }
  .jw-drawer__foot {
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
  .jw-hero__slide { min-height: min(72vh, 560px); }
  .jw-catalog-head {
    position: sticky;
    top: 0;
    z-index: 40;
  }
  .jw-pdp__qty {
    position: sticky;
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    z-index: 30;
    padding: 0.75rem 0.25rem;
    background: linear-gradient(180deg, transparent, var(--jw-bg) 28%);
  }
  body.jw-cart-open .jw-pdp__qty { visibility: hidden; }
}

/* —— Jewelry 2026 app shell v3 —— */
.jw-drawer__cols { display: none !important; }

.jw-drawer {
  width: min(100vw, 24rem) !important;
  background: var(--jw-surface) !important;
  display: flex !important;
  flex-direction: column !important;
}

.jw-drawer__main {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.jw-drawer__body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1rem 1.25rem !important;
}

.jw-drawer__list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.jw-drawer__item {
  display: grid !important;
  grid-template-columns: 76px 1fr !important;
  gap: 0.85rem !important;
  padding: 0.75rem !important;
  border: 1px solid var(--jw-border) !important;
  border-radius: 16px !important;
  background: var(--jw-bg) !important;
}

.jw-drawer__thumb {
  width: 76px !important;
  height: 92px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: var(--jw-light) !important;
}

.jw-drawer__foot {
  flex-shrink: 0 !important;
  padding: 1rem 1rem calc(1.15rem + env(safe-area-inset-bottom, 0px)) !important;
  border-top: 1px solid var(--jw-border) !important;
  background: var(--jw-surface) !important;
}

.jw-drawer__checkout {
  display: inline-flex !important;
  width: 100% !important;
  justify-content: center !important;
  min-height: 52px !important;
  border-radius: 999px !important;
}

/* App product card */
.jw-pc {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: transparent;
}

.jw-pc__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(160deg, #efeff2, #e6e6ea);
  text-decoration: none;
}

html.dark .jw-pc__media {
  background: linear-gradient(160deg, #1a1a20, #121216);
}

.jw-pc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--jw-ease);
}

.jw-pc:hover .jw-pc__media img {
  transform: scale(1.05);
}

.jw-pc__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: #b4b4bc;
  background: #ececef;
}

.jw-pc__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--jw-primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jw-pc__badge--sale {
  background: var(--jw-discount) !important;
}

.jw-pc__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0.1rem;
}

.jw-pc__type { display: none; }

.jw-pc__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--jw-primary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.35em * 2);
}

.jw-pc__title a {
  color: inherit;
  text-decoration: none;
}

.jw-pc__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.jw-pc__price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jw-primary);
}

.jw-pc__price .compare {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--jw-muted);
  text-decoration: line-through;
}

.jw-pc__cart {
  position: static;
  transform: none !important;
  width: 38px;
  height: 38px;
  min-height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--jw-brand, var(--jw-primary));
  border-radius: 999px;
  background: var(--jw-brand, var(--jw-primary));
  color: var(--jw-on-primary);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jw-pc:hover .jw-pc__cart,
.jw-pc:focus-within .jw-pc__cart {
  transform: none !important;
}

/* Chrome denser / app-like */
.jw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--jw-border);
  background: var(--jw-bg) !important;
}

.jw-header__bar {
  min-height: 3.5rem;
  gap: 0.75rem;
}

.jw-logo__text {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  font-weight: 600;
}

.jw-tabbar {
  border-top: 1px solid var(--jw-border);
  background: var(--jw-surface) !important;
}

.jw-tabbar__inner {
  max-width: 28rem;
  padding-top: 0.35rem;
}

.jw-tabbar__item {
  border-radius: 14px;
  min-height: 3.1rem;
}

.jw-tabbar__item.is-active {
  background: var(--jw-light);
  color: var(--jw-primary);
}

.jw-tabbar__badge {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

/* Hero app marketing */
.jw-hero {
  margin: 0;
}

.jw-hero__slide {
  min-height: min(78vh, 720px);
  border-radius: 0;
}

@media (min-width: 1024px) {
  .jw-hero {
    padding: 0.85rem var(--jw-page-pad) 0;
  }
  .jw-hero__slide {
    min-height: min(78vh, 760px);
    border-radius: 28px;
    overflow: hidden;
  }
}

.jw-hero__content {
  padding: 4rem 0 4.5rem;
  max-width: 36rem;
}

.jw-hero__title {
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.jw-hero__sub {
  font-size: 1rem;
  max-width: 32ch;
}

.jw-hero .jw-btn {
  margin-top: 0.35rem;
  min-height: 48px;
  padding-inline: 1.4rem;
}

/* Sections / widgets */
.jw-section {
  padding: clamp(2.25rem, 5vw, 4.25rem) 0;
}

.jw-heading--app h2,
.jw-heading--decor h2,
.jw-heading--left h2 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--jw-primary);
}

.jw-heading p {
  margin-top: 0.45rem;
  color: var(--jw-muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.jw-cats--circles .jw-cat__media,
.jw-cats--cards .jw-cat__media {
  border-radius: 999px;
  background: var(--jw-light);
}

.jw-cats--cards .jw-cat__media {
  border-radius: 18px;
  aspect-ratio: 1;
}

.jw-cat__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--jw-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jw-cat__chip {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--jw-border);
  background: var(--jw-surface);
  color: var(--jw-primary);
  font-size: 0.82rem;
  font-weight: 500;
}

.jw-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

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

.jw-features li {
  padding: 1rem 0.9rem;
  border: 1px solid var(--jw-border);
  border-radius: 18px;
  background: var(--jw-surface);
  text-align: left;
}

.jw-features h3 {
  margin: 0.35rem 0 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jw-primary);
}

.jw-features p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--jw-muted);
  line-height: 1.45;
}

.jw-cta__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: 24px;
  background: var(--jw-primary) !important;
  color: var(--jw-on-primary);
  border: 0 !important;
}

.jw-cta__panel h2 {
  margin: 0;
  color: inherit;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.jw-cta__panel p {
  margin: 0.4rem 0 0;
  color: color-mix(in srgb, var(--jw-on-primary) 78%, transparent);
  font-weight: 300;
}

.jw-cta__panel .jw-btn {
  background: var(--jw-on-primary);
  color: var(--jw-primary);
  border-color: var(--jw-on-primary);
}

.jw-newsletter,
.jw-quotes {
  background: var(--jw-light);
}

.jw-quote {
  border-radius: 20px;
  border: 1px solid var(--jw-border);
  background: var(--jw-surface);
  padding: 1.25rem;
}

.jw-banner {
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
}

.jw-journal-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--jw-border);
  background: var(--jw-surface);
}

.jw-page-banner {
  padding: 1.15rem 0 1.25rem;
  background: var(--jw-bg);
}

.jw-page-banner__title {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.jw-auth__card,
.jw-cart__card,
.jw-cart__totals {
  border-radius: 20px;
}

.jw-pdp__grid {
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .jw-pdp__grid {
    gap: 2.5rem;
  }
}

.jw-pdp__title {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  letter-spacing: -0.03em;
}

.jw-footer {
  margin-top: 1rem;
  padding-top: 3rem;
  border-radius: 0;
}

@media (min-width: 1024px) {
  body.jw-app main,
  .jw-wrap > .jw-container {
    max-width: none;
  }

  .jw-container {
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
  }

  .jw-product-grid.jw-grid[data-cols="4"],
  .jw-grid[data-cols="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }
}

@media (max-width: 767px) {
  .jw-drawer {
    width: 100vw !important;
    border-left: 0 !important;
  }

  .jw-hero__slide {
    min-height: min(68vh, 540px);
  }

  .jw-hero__content {
    padding: 2.75rem 0 3.25rem;
  }

  .jw-section {
    padding: 2rem 0;
  }

  .jw-pc__cart {
    width: 36px;
    height: 36px;
    min-height: 36px;
  }
}
.jw-banner__cta {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #0a0a0b;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.jw-banner--light .jw-banner__cta {
  background: #0a0a0b;
  color: #fff;
}

/* —— App shell v4 canvas (tenant-aware, no gray fill) —— */
body.jw-app {
  --jw-app-radius: 22px;
  --jw-app-radius-lg: 28px;
  --jw-app-gap: 0.85rem;
  background: var(--jw-bg, #ffffff) !important;
  background-color: var(--jw-bg, #ffffff) !important;
}

html.dark body.jw-app {
  background: #070708 !important;
  background-color: #070708 !important;
}

body.jw-app .jw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin: 0;
  border-bottom: 0 !important;
  background: color-mix(in srgb, var(--jw-bg) 88%, transparent) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 10px 32px rgba(15, 15, 18, 0.055);
}

body.jw-app .jw-header__bar {
  min-height: 3.25rem;
  padding-block: 0.35rem;
}

body.jw-app .jw-logo__text {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
}

body.jw-app .jw-action,
body.jw-app .jw-burger {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--jw-surface);
  border: 1px solid var(--jw-border);
}

body.jw-app .jw-nav__links a {
  padding: 0.45rem 0.35rem;
  border-radius: 0;
  background: transparent !important;
}

body.jw-app .jw-nav__links a[aria-current="page"],
body.jw-app .jw-nav__links a:hover {
  background: transparent !important;
  color: var(--jw-accent, var(--jw-brand)) !important;
}

/* Compact rounded hero */
body.jw-app .jw-hero {
  padding: 1.15rem var(--jw-page-pad) 0.45rem !important;
  background: transparent !important;
  overflow: visible !important;
  border-radius: 0 !important;
}

body.jw-app .jw-hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--jw-app-radius-lg);
  min-height: var(--jw-hero-min-h, 42vh);
  background: var(--jw-light);
}

body.jw-app .jw-hero__media-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

body.jw-app .jw-hero__media-layer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
}

body.jw-app .jw-hero__frame > .jw-hero__slide {
  position: relative;
  z-index: 2;
  min-height: var(--jw-hero-min-h, 42vh) !important;
  height: auto;
  border-radius: 0 !important;
  align-items: flex-end !important;
  overflow: visible;
  background: transparent !important;
}

body.jw-app .jw-hero__slide {
  border-radius: var(--jw-app-radius-lg) !important;
  align-items: flex-end !important;
  overflow: hidden;
}

body.jw-app .jw-hero__bg,
body.jw-app .jw-hero__veil {
  border-radius: inherit;
}

body.jw-app .jw-hero__content {
  position: relative;
  z-index: 2;
  max-width: 28rem;
  padding: 1.75rem 1.35rem 1.85rem !important;
  margin: 0;
}

body.jw-app .jw-hero__title {
  font-size: clamp(1.55rem, 4.2vw, 2.55rem) !important;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 14ch;
}

body.jw-app .jw-hero__sub {
  font-size: 0.92rem !important;
  max-width: 34ch;
  margin-top: 0.45rem;
}

body.jw-app .jw-hero__cta,
body.jw-app .jw-hero .jw-btn {
  margin-top: 0.85rem;
  min-height: 44px;
  padding-inline: 1.2rem;
  border-radius: 999px;
  background: #fff !important;
  color: #0a0a0b !important;
  border-color: #fff !important;
}

body.jw-app .jw-hero__arrow {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,0.88);
  color: #0a0a0b;
  border: 0;
}

body.jw-app .jw-hero__nav {
  padding: 0 0.65rem;
}

body.jw-app .jw-hero__dots {
  bottom: 0.85rem;
  gap: 0.35rem;
}

body.jw-app .jw-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
}

body.jw-app .jw-hero__dot[aria-selected="true"] {
  width: 18px;
  background: #fff;
}

body.jw-app .jw-hero__dot::after { display: none; }

@media (min-width: 1024px) {
  body.jw-app .jw-hero {
    padding: 0.85rem clamp(1.5rem, 4vw, 3rem) 0.5rem !important;
  }
  body.jw-app .jw-hero__frame {
    min-height: var(--jw-hero-min-h, 42vh) !important;
    border-radius: 32px !important;
  }
  body.jw-app .jw-hero__frame > .jw-hero__slide {
    min-height: var(--jw-hero-min-h, 42vh) !important;
  }
  body.jw-app .jw-hero__content {
    padding: 2.25rem 2rem 2.35rem !important;
  }
}

@media (max-width: 767px) {
  body.jw-app .jw-hero {
    padding: 0.55rem 0.85rem 0.25rem !important;
  }
  body.jw-app .jw-hero__frame {
    min-height: var(--jw-hero-min-h, 42vh) !important;
    border-radius: 22px !important;
  }
  body.jw-app .jw-hero__frame > .jw-hero__slide {
    min-height: var(--jw-hero-min-h, 42vh) !important;
    border-radius: 0 !important;
  }
  body.jw-app .jw-hero__content {
    padding: 1.35rem 1.1rem 1.5rem !important;
  }
  body.jw-app .jw-hero__arrow {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }
  body.jw-app .jw-hero__nav {
    padding: 0 0.45rem;
  }
}

/* App content canvas */
body.jw-app main,
body.jw-app .jw-wrap {
  background: transparent;
}

body.jw-app .jw-container {
  padding-left: clamp(0.85rem, 3vw, 2.5rem);
  padding-right: clamp(0.85rem, 3vw, 2.5rem);
}

body.jw-app .jw-section {
  padding: clamp(1.35rem, 3.5vw, 2.75rem) 0 !important;
}

body.jw-app .jw-heading h2 {
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
}

body.jw-app .jw-heading p {
  font-size: 0.88rem;
  color: var(--jw-muted);
}

body.jw-app .jw-section__actions .jw-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: var(--jw-surface);
  border: 1px solid var(--jw-border);
  color: var(--jw-primary);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Product cards as app tiles */
body.jw-app .jw-pc__media {
  border-radius: 20px !important;
}

body.jw-app .jw-pc__cart {
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  border-radius: 12px !important;
  font-size: 1.05rem !important;
}

body.jw-app .jw-pc__title {
  font-size: 0.86rem !important;
  font-weight: 500 !important;
}

body.jw-app .jw-pc__price {
  font-size: 0.86rem !important;
}

body.jw-app .jw-product-grid.jw-grid,
body.jw-app .jw-grid {
  gap: 0.85rem 0.7rem !important;
}

/* Category carousel — larger circles, single-line labels */
body.jw-app .jw-cats--circles .jw-cat__img,
body.jw-app .jw-cats--circles .jw-cat__media {
  width: 104px;
  height: 104px;
}

body.jw-app .jw-cats--rail > .jw-cat,
body.jw-app .jw-scroll.jw-cats > .jw-cat,
body.jw-app .jw-cat {
  width: 118px;
}

body.jw-app .jw-cat__label {
  font-size: 0.72rem;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  body.jw-app .jw-cats-rail-wrap .jw-rail__arrow--prev {
    left: 0.35rem;
  }

  body.jw-app .jw-cats-rail-wrap .jw-rail__arrow--next {
    right: 0.35rem;
  }
}

@media (min-width: 768px) {
  body.jw-app .jw-cats--circles .jw-cat__img,
  body.jw-app .jw-cats--circles .jw-cat__media {
    width: 124px;
    height: 124px;
  }

  body.jw-app .jw-cats--rail > .jw-cat,
  body.jw-app .jw-scroll.jw-cats > .jw-cat,
  body.jw-app .jw-cat {
    width: 136px;
  }

  body.jw-app .jw-cat__label {
    font-size: 0.78rem;
  }
}

body.jw-app .jw-features li {
  border-radius: 18px;
  padding: 0.9rem 0.85rem;
  background: var(--jw-surface);
}

body.jw-app .jw-cta__panel {
  border-radius: 24px !important;
  padding: 1.35rem 1.2rem !important;
}

body.jw-app .jw-banners .jw-banner {
  border-radius: 22px !important;
  min-height: 190px !important;
}

body.jw-app .jw-page-banner {
  margin: 0.35rem var(--jw-page-pad) 0;
  padding: 1rem 1.1rem !important;
  border-radius: 18px;
  background: var(--jw-surface) !important;
  border: 1px solid var(--jw-border);
}

body.jw-app .jw-catalog-head,
body.jw-app .jw-catalog-filters,
body.jw-app .jw-auth__card,
body.jw-app .jw-cart__card,
body.jw-app .jw-cart__totals,
body.jw-app .jw-quote,
body.jw-app .jw-journal-card {
  border-radius: 18px !important;
}

body.jw-app .jw-catalog-browse {
  gap: 1rem;
}

body.jw-app .jw-pdp {
  padding-top: 1.35rem;
}

body.jw-app .jw-pdp__gallery {
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

body.jw-app .jw-tabbar {
  left: 0.65rem !important;
  right: 0.65rem !important;
  bottom: calc(0.45rem + env(safe-area-inset-bottom, 0px)) !important;
  width: auto !important;
  border: 1px solid var(--jw-border) !important;
  border-radius: 22px !important;
  background: color-mix(in srgb, var(--jw-surface) 92%, transparent) !important;
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  padding-bottom: 0 !important;
  overflow: hidden;
}

body.jw-app .jw-tabbar__inner {
  padding: 0.35rem 0.25rem !important;
  max-width: none;
}

body.jw-app .jw-tabbar__item {
  min-height: 2.85rem;
  border-radius: 16px;
}

body.jw-app .jw-tabbar__label {
  font-size: 0.58rem;
}

@media (min-width: 1024px) {
  body.jw-app .jw-tabbar {
    display: none !important;
  }
}

body.jw-app .jw-footer {
  margin: 1rem var(--jw-page-pad) 5.5rem;
  border-radius: 28px;
  overflow: hidden;
  padding: 2.25rem 1.25rem 1.25rem !important;
}

@media (min-width: 1024px) {
  body.jw-app .jw-footer {
    margin: 1.5rem clamp(1.5rem, 4vw, 3rem) 2rem;
  }
}

body.jw-app .jw-drawer {
  border-radius: 24px 0 0 24px !important;
  contain: layout style;
}

@media (max-width: 767px) {
  body.jw-app .jw-drawer {
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: min(88dvh, 100%) !important;
    max-height: 88dvh !important;
    width: 100vw !important;
    border-left: 0 !important;
    border-top: 1px solid var(--jw-border) !important;
    border-radius: 22px 22px 0 0 !important;
    box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.12) !important;
    transform: translate3d(0, 110%, 0) !important;
    transition: transform 300ms var(--jw-ease) !important;
    will-change: transform;
  }

  body.jw-app .jw-drawer.is-open {
    transform: translate3d(0, 0, 0) !important;
  }

  body.jw-app .jw-drawer.is-closed {
    transform: translate3d(0, 110%, 0) !important;
  }

  body.jw-app .jw-footer {
    margin-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }

  body.jw-app main {
    padding-bottom: 0.5rem;
  }
}

body.jw-app .jw-mobile__panel {
  border-radius: 0 24px 24px 0 !important;
}

body.jw-app .jw-filter-sheet:not(.jw-filter-sheet--bottom) .jw-filter-sheet__panel {
  border-radius: 0 24px 24px 0 !important;
}

body.jw-app .jw-filter-sheet--bottom .jw-filter-sheet__panel {
  border-radius: 22px 22px 0 0 !important;
}

body.jw-app .jw-btn {
  border-radius: 14px !important;
  min-height: 46px;
  letter-spacing: 0.08em;
}

body.jw-app .jw-newsletter {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 520px;
  border-radius: 16px 16px 8px 8px !important;
  overflow: visible;
}

body.jw-app .jw-newsletter__form input {
  background: var(--jw-surface, #fff) !important;
  border-radius: 14px !important;
  outline: none !important;
  box-shadow: none !important;
}

body.jw-app .jw-newsletter__form input:focus {
  border-color: var(--jw-brand) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--jw-brand) 12%, transparent) !important;
}

html.dark body.jw-app .jw-newsletter__form input {
  background: var(--jw-light) !important;
}

html.dark body.jw-app .jw-newsletter__form input:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--jw-brand) 18%, transparent) !important;
}

/* —— Typography + footer polish —— */
body.jw-app .jw-pc,
body.jw-app .jw-pc__body,
body.jw-app .jw-pc__title,
body.jw-app .jw-pc__price,
body.jw-app .jw-pc__meta {
  text-align: left !important;
}

body.jw-app .jw-pc__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  padding: 0.15rem 0.15rem 0.1rem;
}

body.jw-app .jw-pc__title {
  margin: 0;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--jw-primary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.35em * 2);
}

body.jw-app .jw-pc__title a {
  color: inherit;
  text-decoration: none;
}

body.jw-app .jw-pc__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
}

body.jw-app .jw-pc__price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.4rem;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  color: var(--jw-primary);
}

body.jw-app .jw-pc__price .compare {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--jw-muted);
  text-decoration: line-through;
}

body.jw-app .jw-pc__cart {
  margin-left: auto;
}

body.jw-app .jw-heading {
  text-align: left !important;
  margin-bottom: 1rem;
}

body.jw-app .jw-heading--decor,
body.jw-app .jw-heading--app,
body.jw-app .jw-heading--left {
  text-align: left !important;
}

body.jw-app .jw-heading h2,
body.jw-app .jw-heading--decor h2,
body.jw-app .jw-heading--app h2,
body.jw-app .jw-heading--left h2 {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  line-height: 1.25;
  color: var(--jw-primary) !important;
}

body.jw-app .jw-heading--decor h2::before,
body.jw-app .jw-heading--decor h2::after {
  display: none !important;
}

body.jw-app .jw-heading p {
  margin-top: 0.4rem;
  font-size: 0.95rem !important;
  line-height: 1.5;
  color: var(--jw-muted);
  font-weight: 300;
  max-width: 40ch;
}

body.jw-app .jw-nav__links a {
  font-size: 0.84rem !important;
  letter-spacing: 0.1em !important;
  font-weight: 500 !important;
  padding: 0.5rem 0.85rem !important;
}

body.jw-app .jw-mobile__nav a {
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  padding: 0.95rem 0 !important;
}

body.jw-app .jw-tabbar__label {
  font-size: 0.64rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
}

body.jw-app .jw-logo__text {
  font-size: 0.9rem !important;
  letter-spacing: 0.2em !important;
  font-weight: 600 !important;
}

/* Footer: full-bleed app bar, not floating card */
body.jw-app .jw-footer {
  margin: 2rem 0 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  padding: 3rem 0 1.25rem !important;
  background: #0a0a0b !important;
  color: rgba(255, 255, 255, 0.72) !important;
  border-top: 0 !important;
}

@media (max-width: 767px) {
  body.jw-app .jw-footer {
    margin: 1.5rem 0 0 !important;
    padding: 2.4rem 0 calc(6.25rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

body.jw-app .jw-footer .jw-container {
  padding-left: clamp(1.1rem, 4vw, 2.75rem);
  padding-right: clamp(1.1rem, 4vw, 2.75rem);
}

body.jw-app .jw-footer__cols {
  display: grid;
  gap: 1.85rem 2.25rem;
  grid-template-columns: 1fr;
  text-align: left;
}

@media (min-width: 640px) {
  body.jw-app .jw-footer__cols {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  body.jw-app .jw-footer__cols {
    grid-template-columns: 1.55fr 1fr 1.1fr;
    gap: 2rem 3rem;
  }
}

body.jw-app .jw-footer__brand {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

body.jw-app .jw-footer__logo {
  text-align: left !important;
}

body.jw-app .jw-footer__logo .jw-logo__text {
  color: rgba(255, 255, 255, 0.96) !important;
}

body.jw-app .jw-footer__tagline {
  margin: 0;
  max-width: 17rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48) !important;
  font-weight: 300;
}

body.jw-app .jw-footer__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

body.jw-app .jw-footer h3 {
  margin: 0 0 0.9rem;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600 !important;
  color: #fff !important;
}

body.jw-app .jw-footer a,
body.jw-app .jw-footer__contact,
body.jw-app .jw-footer li,
body.jw-app .jw-footer__hours {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.9rem !important;
  font-weight: 300;
  line-height: 1.55;
}

body.jw-app .jw-footer a:hover {
  color: #fff !important;
}

body.jw-app .jw-footer__contact {
  display: grid;
  gap: 0.45rem;
}

body.jw-app .jw-footer__hours {
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 0.82rem !important;
}

body.jw-app .jw-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

body.jw-app .jw-footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.jw-app .jw-footer__social a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

body.jw-app .jw-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: 2.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left !important;
}

body.jw-app .jw-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

body.jw-app .jw-footer__powered {
  color: inherit;
  text-decoration: none;
}

body.jw-app .jw-footer__powered:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

body.jw-app .jw-footer__pay {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  margin-left: auto;
}

@media (max-width: 767px) {
  body.jw-app .jw-footer__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    gap: 0.75rem;
  }

  body.jw-app .jw-footer__copy {
    width: 100%;
    text-align: center;
  }

  body.jw-app .jw-footer__pay {
    margin-left: 0;
    justify-content: center;
  }
}

body.jw-app .jw-footer__pay-icon {
  display: inline-flex;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 160ms ease, transform 160ms ease;
}

body.jw-app .jw-footer__pay-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

body.jw-app .jw-footer__pay-icon svg {
  display: block;
  height: 24px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

html.dark body.jw-app .jw-footer {
  background: #050506 !important;
}

/* —— White canvas + hide section subtitles + app PDP —— */
body.jw-app {
  background: var(--jw-bg, #ffffff) !important;
  background-color: var(--jw-bg, #ffffff) !important;
}

html.dark body.jw-app {
  background: var(--jw-bg, #09090b) !important;
  background-color: var(--jw-bg, #09090b) !important;
}

body.jw-app .jw-heading p,
body.jw-app .jw-heading--decor p,
body.jw-app .jw-heading--app p,
body.jw-app .jw-heading--left p {
  display: none !important;
}

body.jw-app .jw-catalog,
body.jw-app .jw-catalog.jw-wrap,
body.jw-app .jw-catalog__body,
body.jw-app .jw-page-banner,
body.jw-app .jw-section--light,
body.jw-app .jw-newsletter,
body.jw-app .jw-quotes {
  background: var(--jw-bg, #ffffff) !important;
  background-color: var(--jw-bg, #ffffff) !important;
}

html.dark body.jw-app .jw-catalog,
html.dark body.jw-app .jw-catalog.jw-wrap,
html.dark body.jw-app .jw-catalog__body,
html.dark body.jw-app .jw-page-banner,
html.dark body.jw-app .jw-section--light {
  background: #09090b !important;
  background-color: #09090b !important;
}

body.jw-app .jw-page-banner {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 1.15rem 0 0.35rem !important;
  background: var(--jw-bg) !important;
}

body.jw-app .jw-catalog-head {
  background: var(--jw-bg) !important;
  border-color: var(--jw-border);
}

body.jw-app .jw-catalog-filters {
  background: var(--jw-bg) !important;
}

body.jw-app .jw-pdp--app {
  background: var(--jw-bg);
  padding: 1.35rem 0 2.5rem;
}

html.dark body.jw-app .jw-pdp--app {
  background: #09090b;
}

body.jw-app .jw-pdp__shell {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
  padding-bottom: 0.5rem;
}

body.jw-app .jw-pdp__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0 0.15rem;
}

body.jw-app .jw-pdp__back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--jw-border);
  background: var(--jw-surface, #fff);
  color: var(--jw-primary);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

body.jw-app .jw-pdp__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  body.jw-app .jw-pdp__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
  }
}

body.jw-app .jw-pdp__gallery {
  border-radius: 24px;
  overflow: visible;
  background: transparent;
  border: none;
}

body.jw-app .jw-pgallery__scroller {
  border-radius: 22px;
  border: 1px solid var(--jw-border);
  background: var(--jw-surface, #ffffff);
}

html.dark body.jw-app .jw-pgallery__scroller {
  background: #141417;
}

body.jw-app .jw-pgallery__frame {
  background: var(--jw-light, #f3f3f3);
}

body.jw-app .jw-pgallery__thumb {
  border-radius: 14px;
  background: var(--jw-surface);
}

body.jw-app .jw-pgallery__thumb.is-active {
  border-color: var(--jw-accent, #9c7e55);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--jw-accent, #9c7e55) 28%, transparent);
}

@media (min-width: 1024px) {
  body.jw-app .jw-pgallery__thumb {
    width: 5rem;
    height: 5rem;
  }

  body.jw-app .jw-pgallery__thumbs {
    width: 5rem;
    max-height: none;
  }

  body.jw-app .jw-pgallery__stage {
    max-width: none;
  }

  body.jw-app .jw-pgallery__frame {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }
}

body.jw-app .jw-pdp__info {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: 0.25rem 0 0.35rem;
}

body.jw-app .jw-pdp__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--jw-primary);
}

body.jw-app .jw-pdp__price {
  margin: 0;
}

body.jw-app .jw-pdp__stock {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

body.jw-app .jw-pdp__stock--low { color: #c2410c; }
body.jw-app .jw-pdp__stock--out { color: var(--jw-discount); }

body.jw-app .jw-pdp__block {
  padding-top: 0.35rem;
  border-top: 1px solid var(--jw-border);
}

body.jw-app .jw-pdp__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--jw-muted);
}

body.jw-app .jw-pdp__buybar {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 0.55rem;
  align-items: stretch;
  position: sticky;
  bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  margin-top: 0.35rem;
  padding: 0.65rem;
  border: 1px solid var(--jw-border);
  border-radius: 18px;
  background: color-mix(in srgb, #fff 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html.dark body.jw-app .jw-pdp__buybar {
  background: color-mix(in srgb, #141417 92%, transparent);
}

@media (min-width: 1024px) {
  body.jw-app .jw-pdp__buybar {
    position: static;
    backdrop-filter: none;
    background: var(--jw-light);
  }
}

body.jw-app .jw-pdp__qty-ctl {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 46px;
  border: 1px solid var(--jw-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

html.dark body.jw-app .jw-pdp__qty-ctl {
  background: #141417;
}

body.jw-app .jw-pdp__qty-ctl button,
body.jw-app .jw-pdp__qty-ctl span {
  width: 40px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--jw-primary);
  font-size: 1rem;
}

body.jw-app .jw-pdp__add,
body.jw-app .jw-pdp__buy {
  min-height: 46px;
  border-radius: 14px !important;
  justify-content: center;
}

body.jw-app .jw-pdp__add:disabled,
body.jw-app .jw-pdp__buy:disabled,
body.jw-app .jw-pdp__buybar .jw-btn:disabled {
  opacity: 0.38 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  filter: none !important;
  transform: none !important;
}

body.jw-app .jw-pdp__tabs {
  margin-top: 0.85rem;
  padding: 1rem 1rem 1.15rem;
  border: 1px solid var(--jw-border);
  border-radius: 20px;
  background: #fff;
}

html.dark body.jw-app .jw-pdp__tabs {
  background: #141417;
}

body.jw-app .jw-pdp__tablist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.45rem;
  border-radius: 14px;
  background: var(--jw-light);
  margin-bottom: 1.15rem;
}

body.jw-app .jw-pdp__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  background: transparent;
  color: var(--jw-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
}

body.jw-app .jw-pdp__tab.is-active {
  background: #fff;
  color: var(--jw-heading, var(--jw-primary));
  box-shadow: 0 1px 2px rgba(17, 17, 16, 0.06);
}

html.dark body.jw-app .jw-pdp__tab.is-active {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

body.jw-app .jw-pdp__rich {
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 400;
  color: #111110;
}

body.jw-app .jw-pdp__detail-desc .jw-pdp__muted {
  color: #111110;
  opacity: 0.55;
}

body.jw-app .jw-pdp__detail-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  body.jw-app .jw-pdp__detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem 3rem;
    align-items: start;
  }

  body.jw-app .jw-pdp__detail-grid--solo {
    grid-template-columns: 1fr;
  }
}

body.jw-app .jw-pdp__attrs {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 899px) {
  body.jw-app .jw-pdp__attrs {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(17, 17, 16, 0.1);
  }
}

body.jw-app .jw-pdp__attrs-title {
  margin: 0 0 1.15rem;
  font-family: var(--jw-font-display, inherit);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111110;
}

body.jw-app .jw-pdp__attrs .jw-pdp__specs,
body.jw-app .jw-pdp__specs {
  margin: 0;
  display: grid;
  gap: 0;
}

body.jw-app .jw-pdp__attrs .jw-pdp__spec,
body.jw-app .jw-pdp__spec {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0.5rem, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: 0.7rem;
  padding: 0.75rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1.45;
  min-width: 0;
}

body.jw-app .jw-pdp__attrs .jw-pdp__spec + .jw-pdp__spec,
body.jw-app .jw-pdp__spec + .jw-pdp__spec {
  border-top: 1px solid rgba(17, 17, 16, 0.08);
}

body.jw-app .jw-pdp__attrs .jw-pdp__spec dt,
body.jw-app .jw-pdp__spec dt {
  margin: 0;
  max-width: 9rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #111110;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.jw-app .jw-pdp__spec-leader {
  display: block;
  width: 100%;
  min-width: 0;
  height: 1px;
  margin: 0.7em 0 0;
  border: 0;
  align-self: start;
  background-image: linear-gradient(
    to right,
    rgba(17, 17, 16, 0.3) 33%,
    rgba(17, 17, 16, 0) 0%
  );
  background-position: center;
  background-size: 5px 1px;
  background-repeat: repeat-x;
  transform: none;
}

body.jw-app .jw-pdp__attrs .jw-pdp__spec dd,
body.jw-app .jw-pdp__spec dd {
  margin: 0;
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: #111110;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

html.dark body.jw-app .jw-pdp__rich,
html.dark body.jw-app .jw-pdp__attrs-title,
html.dark body.jw-app .jw-pdp__attrs .jw-pdp__spec dt,
html.dark body.jw-app .jw-pdp__attrs .jw-pdp__spec dd,
html.dark body.jw-app .jw-pdp__spec dt,
html.dark body.jw-app .jw-pdp__spec dd {
  color: #f4f4f5;
}

html.dark body.jw-app .jw-pdp__spec-leader {
  background-image: linear-gradient(
    to right,
    rgba(244, 244, 245, 0.35) 33%,
    rgba(244, 244, 245, 0) 0%
  );
}

html.dark body.jw-app .jw-pdp__attrs .jw-pdp__spec,
html.dark body.jw-app .jw-pdp__spec {
  background: transparent;
}

body.jw-app .jw-related {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

@media (max-width: 767px) {
  body.jw-app .jw-pdp__buybar {
    grid-template-columns: auto 1fr;
  }
  body.jw-app .jw-pdp__buy {
    grid-column: 1 / -1;
  }
}

/* —— Polish pass: cards, hero width, section head, journal, contact —— */
body.jw-app .jw-pc,
body.jw-app .jw-catalog .jw-pc,
body.jw-app .jw-product-grid .jw-pc,
body.jw-app .jw-grid .jw-pc,
body.jw-app .jw-scroll > .jw-pc,
body.jw-app .jw-scroll > * > .jw-pc {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

body.jw-app .jw-pc__media,
body.jw-app .jw-pc__placeholder {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 1px solid var(--jw-border);
}

html.dark body.jw-app .jw-pc__media,
html.dark body.jw-app .jw-pc__placeholder {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.jw-app .jw-pc__media img {
  background: transparent;
}

body.jw-app .jw-hero__content {
  max-width: min(48rem, 94%) !important;
  width: 100%;
}

body.jw-app .jw-hero__title {
  max-width: none !important;
}

body.jw-app .jw-hero__sub {
  max-width: min(52ch, 100%) !important;
}

body.jw-app .jw-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.15rem;
  min-height: 2rem;
}

body.jw-app .jw-section__head .jw-heading,
body.jw-app .jw-section__head .jw-heading--app {
  margin: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
}

body.jw-app .jw-section__all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--jw-border);
  background: var(--jw-surface);
  color: var(--jw-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

html.dark body.jw-app .jw-section__all {
  background: #141417;
}

body.jw-app .jw-section__all:hover {
  border-color: var(--jw-primary);
}

body.jw-app .jw-pdp__excerpt {
  margin: 0;
  max-width: 36rem;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.65;
  color: #3f3f46;
}

/* Journal: 4-col desktop, mobile carousel */
body.jw-app .jw-journal--desktop {
  display: none;
}

body.jw-app .jw-journal-mobile {
  display: block;
}

body.jw-app .jw-journal-rail > .jw-journal-card {
  flex: 0 0 min(78vw, 300px);
}

body.jw-app .jw-journal-card {
  background: #fff !important;
  border: 1px solid var(--jw-border) !important;
  border-radius: 18px !important;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

html.dark body.jw-app .jw-journal-card {
  background: #121216 !important;
}

body.jw-app .jw-journal-card__img {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-bottom: 1px solid var(--jw-border);
}

body.jw-app .jw-journal-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.95rem 1rem 1.05rem;
}

body.jw-app .jw-journal-card__body h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--jw-primary);
}

body.jw-app .jw-journal-card__more {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--jw-muted);
}

@media (min-width: 768px) {
  body.jw-app .jw-journal--desktop {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  body.jw-app .jw-journal-mobile {
    display: none !important;
  }
}

/* Match homepage container width on content pages */
body.jw-app .jw-about .jw-container,
body.jw-app .jw-contact .jw-container,
body.jw-app .jw-story .jw-container,
body.jw-app .jw-story__sheet,
body.jw-app .jw-about .max-w-container,
body.jw-app .jw-contact .max-w-container,
body.jw-app .jw-story .max-w-container,
body.jw-app .jw-about .page-container,
body.jw-app .jw-contact .page-container {
  max-width: var(--jw-container) !important;
  width: 100%;
}

body.jw-app .jw-about .max-w-container,
body.jw-app .jw-contact .max-w-container {
  padding-left: var(--jw-page-pad) !important;
  padding-right: var(--jw-page-pad) !important;
}

/* Contact page polish */
body.jw-app .jw-contact,
body.jw-app .jw-contact__body {
  background: var(--jw-bg) !important;
}

body.jw-app .jw-contact .jw-contact-dup-title .jw-contact-page__eyebrow,
body.jw-app .jw-contact .jw-contact-dup-title .jw-contact-page__title {
  display: none !important;
}

body.jw-app .jw-contact .jw-contact-dup-title {
  margin: 0 0 1.5rem;
}

body.jw-app .jw-contact .jw-contact-page__lead {
  margin: 0;
  max-width: none;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--jw-muted);
}

/* CMS LAYOUT columns — side-by-side on desktop */
body.jw-app .cms-layout__cols {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body.jw-app .cms-layout__col {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
@media (min-width: 768px) {
  body.jw-app .cms-layout__col[style*="--cms-col-basis"] {
    width: var(--cms-col-basis) !important;
    flex: 0 0 var(--cms-col-basis) !important;
    max-width: var(--cms-col-basis) !important;
  }
}
body.jw-app .cms-richtext--compact {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.jw-app .jw-contact-page__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  body.jw-app .jw-contact-page__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
    align-items: start;
  }
}

body.jw-app .jw-contact-card {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--jw-border);
  border-radius: 20px;
  background: var(--jw-surface);
}

html.dark body.jw-app .jw-contact-card {
  background: #121216;
}

body.jw-app .jw-contact-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--jw-primary);
}

body.jw-app .jw-contact-card__desc {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: var(--jw-muted);
  font-weight: 300;
  line-height: 1.5;
}

body.jw-app .jw-contact-card__list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

body.jw-app .jw-contact-card__item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--jw-border);
}

body.jw-app .jw-contact-card__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

body.jw-app .jw-contact-card__label {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jw-muted);
  font-weight: 600;
}

body.jw-app .jw-contact-card__value {
  margin: 0.3rem 0 0;
  display: block;
  color: var(--jw-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
}

body.jw-app .jw-contact-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

body.jw-app .jw-contact-card__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  color: var(--jw-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.jw-app .jw-contact-card__body {
  min-width: 0;
  flex: 1;
}

body.jw-app .jw-contact-card__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--jw-border);
}

body.jw-app .jw-contact-card__social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--jw-border);
  color: var(--jw-primary);
  background: transparent;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.jw-app .jw-contact-card__social-link:hover {
  border-color: var(--jw-primary);
  background: color-mix(in srgb, var(--jw-primary) 6%, transparent);
  transform: translateY(-1px);
}

body.jw-app .jw-contact-card__form {
  margin-top: 1.15rem;
}

body.jw-app .jw-contact__body {
  padding-top: 0.5rem !important;
  padding-bottom: 3rem !important;
}

/* Non-jewelry fallback titles still styled */
.jw-contact-page__eyebrow {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-contact-page__title {
  margin: 0.65rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--jw-primary);
}

.jw-contact-page__lead {
  margin: 1rem 0 0;
  max-width: none;
  color: var(--jw-body);
}

/* —— Auth modal + account app —— */
@keyframes jw-auth-sheet-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.jw-auth-modal {
  position: fixed;
  inset: 0;
  z-index: calc(var(--jw-drawer-z, 10050) + 20);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

@media (min-width: 640px) {
  .jw-auth-modal {
    align-items: center;
    padding: 1rem;
  }
}

.jw-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 10, 11, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  animation: jw-auth-backdrop-in 0.22s ease;
}

@keyframes jw-auth-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.jw-auth-modal__sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  max-height: min(88dvh, 640px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px 20px 0 0;
  background: var(--jw-surface, #fff);
  border: 1px solid var(--jw-border);
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.1);
  padding: 0.65rem 1rem 1.15rem;
  animation: jw-auth-sheet-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 640px) {
  .jw-auth-modal__sheet {
    border-radius: 20px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.16);
    padding: 0.75rem 1.1rem 1.25rem;
  }
}

.jw-auth-modal__handle {
  display: block;
  width: 36px;
  height: 4px;
  margin: 0.15rem auto 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--jw-muted) 35%, transparent);
}

@media (min-width: 640px) {
  .jw-auth-modal__handle {
    display: none;
  }
}

.jw-auth-modal--page {
  min-height: 70vh;
  position: relative;
  padding: 2rem 1rem 3rem;
  align-items: center;
}

.jw-auth-modal--page .jw-auth-modal__backdrop {
  position: absolute;
  border-radius: 0;
  background: var(--jw-bg, #fff);
  backdrop-filter: none;
}

.jw-auth-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--jw-border) 40%, transparent);
  color: var(--jw-muted);
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.jw-auth-modal__close:hover {
  background: color-mix(in srgb, var(--jw-border) 70%, transparent);
  color: var(--jw-primary);
}

.jw-auth__card--modal {
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
  max-width: none !important;
  margin: 0 !important;
}

.jw-auth__card--modal .jw-auth__head {
  margin-bottom: 0.15rem;
  text-align: center;
}

.jw-auth__card--modal .jw-auth__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
}

.jw-auth__card--modal .jw-auth__subtitle {
  margin: 0 0 0.85rem;
  text-align: center;
}

.jw-auth__card--modal .jw-auth__field input {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  font-size: 0.875rem;
  border-radius: 12px;
}

.jw-auth__card--modal .jw-auth__submit {
  min-height: 42px;
  margin-top: 0.1rem;
  border-radius: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.jw-auth__card--modal .jw-auth__msg {
  margin-bottom: 0.75rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  border-radius: 12px;
  text-align: center;
}

.jw-auth__card--modal .jw-auth__link {
  text-align: center;
}

.jw-auth__card--modal .jw-auth-oauth--compact {
  justify-content: center;
  text-align: center;
}

.jw-auth__card--modal .jw-auth-oauth--compact span {
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 639px) {
  .jw-auth__modal-top .jw-auth__mode-pills button {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    padding-inline: 0.35rem;
  }

  .jw-auth__card--modal .jw-auth__title {
    font-size: 1.1rem;
  }

  .jw-auth__card--modal .jw-auth__subtitle {
    font-size: 0.76rem;
  }
}

body.jw-auth-open .jw-tabbar {
  opacity: 0;
  pointer-events: none;
}

/* Account app shell */
body.jw-app .jw-account,
body.jw-app .jw-account__body {
  background: var(--jw-bg, #ffffff) !important;
}

body.jw-app .jw-account__body {
  padding-top: 0.75rem !important;
  padding-bottom: 2.5rem !important;
}

.jw-account-app {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.jw-account-app__hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--jw-border);
  border-radius: 22px;
  background: var(--jw-surface, #fff);
}

.jw-account-app__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--jw-primary);
  color: var(--jw-on-primary);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.jw-account-app__eyebrow {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--jw-muted);
}

.jw-account-app__name {
  margin: 0.2rem 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--jw-primary);
  line-height: 1.2;
}

.jw-account-app__meta {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--jw-muted);
  font-weight: 300;
  word-break: break-all;
}

.jw-account-app__tabs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.2rem;
  border: 1px solid var(--jw-border);
  border-radius: 18px;
  background: var(--jw-surface, #fff);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.jw-account-app__tabs::-webkit-scrollbar {
  display: none;
}

.jw-account-app__tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--jw-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
}

.jw-account-app__tab.is-active {
  background: var(--jw-primary);
  color: var(--jw-on-primary);
}

.jw-account-app__tab-icon {
  display: inline-flex;
  opacity: 0.9;
}

.jw-account-app__panel {
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--jw-border);
  border-radius: 22px;
  background: var(--jw-surface, #fff);
  min-height: 280px;
}

.jw-account-app__panel .rounded-2xl,
.jw-account-app__panel [class*="rounded-2xl"],
.jw-account-app__panel [class*="border-[#E6E3D9]"],
.jw-account-app__panel [class*="bg-white"] {
  border-color: var(--jw-border) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jw-account-app__panel [class*="text-[#9C7E55]"],
.jw-account-app__panel [class*="text-[#111110]"],
.jw-account-app__panel [class*="text-[#615C53]"] {
  color: var(--jw-primary) !important;
}

.jw-account-app__panel [class*="text-[#615C53]"] {
  color: var(--jw-muted) !important;
}

.jw-account-app__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.15rem 0.5rem;
}

.jw-account-app__shop {
  font-size: 0.82rem;
  color: var(--jw-muted);
  text-decoration: none;
  font-weight: 500;
}

.jw-account-app__logout {
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--jw-border);
  border-radius: 12px;
  background: var(--jw-surface, #fff);
  color: var(--jw-primary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
}

.jw-account-app__logout:hover {
  border-color: var(--jw-discount);
  color: var(--jw-discount);
}

@media (min-width: 900px) {
  .jw-account-app {
    max-width: 720px;
    gap: 0.85rem;
  }
  .jw-account-app__hero {
    padding: 1.1rem 1.15rem;
  }
  .jw-account-app__tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
    gap: 0.15rem;
  }
  .jw-account-app__tab {
    justify-content: center;
    flex: 1 1 auto;
    padding: 0 0.4rem;
    font-size: 0.74rem;
  }
}

/* Kill leftover gray fills across jewelry surfaces (not product grid/cards) */
body.jw-app .jw-hero__frame,
body.jw-app .jw-cat__media,
body.jw-app .jw-journal-card__img,
body.jw-app .jw-page-banner,
body.jw-app .jw-catalog-head,
body.jw-app .jw-catalog-filters,
body.jw-app .jw-pdp--app,
body.jw-app .jw-pdp__tabs,
body.jw-app .jw-contact-card,
body.jw-app .jw-auth__card {
  background-color: var(--jw-surface, var(--jw-bg, #ffffff));
}

body.jw-app .jw-section,
body.jw-app main {
  background: transparent !important;
  background-color: transparent !important;
}

body.jw-app .jw-newsletter,
body.jw-app .jw-quotes {
  background: var(--jw-bg, #ffffff) !important;
}

body.jw-app .jw-features li,
body.jw-app .jw-quote {
  background: var(--jw-surface, #ffffff) !important;
}

.jw-pc,
body.jw-app .jw-pc,
.jw-pc__body,
body.jw-app .jw-pc__body,
.jw-pc__media,
body.jw-app .jw-pc__media,
.jw-pc__placeholder,
body.jw-app .jw-pc__placeholder {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* —— Unified site gutter (hero = sections = header logo) + brand vs ink —— */
body.jw-app {
  --jw-gutter: clamp(0.85rem, 3vw, 2.5rem);
  --jw-page-pad: var(--jw-gutter);
}

/* Desktop: keep the larger content pad (same as header [data-theme-pack] rule) */
@media (min-width: 1024px) {
  body.jw-app,
  :root:has([data-theme-pack="jewelry"]),
  [data-theme-pack="jewelry"] {
    --jw-page-pad: clamp(2.5rem, 6vw, 5rem);
    --jw-gutter: var(--jw-page-pad);
  }
}

body.jw-app .jw-container {
  padding-left: var(--jw-page-pad) !important;
  padding-right: var(--jw-page-pad) !important;
}

body.jw-app .jw-hero {
  padding-left: var(--jw-page-pad) !important;
  padding-right: var(--jw-page-pad) !important;
  padding-top: 1.15rem !important;
  padding-bottom: 0.45rem !important;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* Stories: identical inset to header logo / product widgets */
body.jw-app .jw-stories-rail {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.jw-app .jw-stories-rail > .jw-container {
  padding-left: var(--jw-page-pad) !important;
  padding-right: var(--jw-page-pad) !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (min-width: 1024px) {
  body.jw-app .jw-hero {
    padding-top: 1.45rem !important;
    padding-bottom: 0.6rem !important;
  }
}

@media (max-width: 767px) {
  body.jw-app .jw-hero {
    padding-top: 0.95rem !important;
    padding-bottom: 0.35rem !important;
  }
}

body.jw-app .jw-hero__frame {
  width: 100%;
  max-width: none;
  min-height: var(--jw-hero-min-h, 42vh) !important;
}

body.jw-app .jw-hero__frame > .jw-hero__slide {
  width: 100%;
  max-width: none;
}

/* Buttons / brand fills use --jw-brand; titles keep --jw-primary (= heading ink) */
body.jw-app .jw-btn,
body.jw-app .jw-pc__cart,
body.jw-app .jw-account-app__tab.is-active,
body.jw-app .jw-account-app__avatar,
body.jw-app .jw-pdp__buy,
body.jw-app .jw-auth__submit,
body.jw-app .jw-auth__tabs button.is-active,
body.jw-app .jw-pdp__tab.is-active,
body.jw-app .jw-cta__panel,
body.jw-app .jw-tab.is-active,
body.jw-app .jw-filter-chip.is-active,
body.jw-app .jw-catalog-chip.is-active,
body.jw-app .jw-catalog-cats button.is-active,
body.jw-app .jw-catalog-catpill.is-active,
body.jw-app .jw-cats--chips .jw-cat.is-active,
body.jw-app .jw-pc__badge:not(.jw-pc__badge--sale),
body.jw-app .jw-reviews__submit,
body.jw-app button[type="submit"].jw-btn {
  background: var(--jw-brand) !important;
  background-color: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
  box-shadow: none !important;
}

body.jw-app .jw-btn--outline {
  background: transparent !important;
  color: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
}

body.jw-app .jw-btn--outline:hover {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

body.jw-app .jw-auth__tabs {
  border-color: var(--jw-border);
  background: var(--jw-light);
}

body.jw-app .jw-auth__tabs button {
  color: var(--jw-muted);
  background: transparent;
}

body.jw-app .jw-auth__tabs button.is-active {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

body.jw-app .jw-pc__badge--sale {
  background: var(--jw-discount) !important;
  color: #fff !important;
}

/* Readable body / muted text */
body.jw-app,
body.jw-app .jw-wrap,
body.jw-app .jw-section,
body.jw-app .jw-pdp,
body.jw-app .jw-catalog {
  color: var(--jw-body);
}

body.jw-app .jw-pc__title,
body.jw-app .jw-pc__price,
body.jw-app .jw-heading h2,
body.jw-app .jw-pdp__title,
body.jw-app .jw-page-banner__title,
body.jw-app .jw-logo__text,
body.jw-app .jw-journal-card__body h3,
body.jw-app .jw-account-app__name,
body.jw-app .jw-contact-card__title,
body.jw-app .jw-contact-card__value,
body.jw-app .jw-auth__title {
  color: var(--jw-heading, var(--jw-primary)) !important;
}

body.jw-app .jw-pc__price .compare,
body.jw-app .jw-journal-card__more,
body.jw-app .jw-account-app__meta,
body.jw-app .jw-account-app__eyebrow,
body.jw-app .jw-contact-card__label,
body.jw-app .jw-contact-card__desc,
body.jw-app .jw-section__all {
  color: var(--jw-muted) !important;
}

body.jw-app .jw-pdp__excerpt {
  color: #3f3f46 !important;
}

body.jw-app .jw-pdp__rich,
body.jw-app .jw-pdp__detail-desc .jw-pdp__rich {
  color: #111110 !important;
}

body.jw-app .jw-contact-page__lead {
  color: var(--jw-body) !important;
}

body.jw-app .jw-pdp__tabpanel {
  padding: 0.15rem 0.15rem 0.35rem;
}

/* —— Dark mode finalizer (must stay last) —— */
html.dark body.jw-app,
html.dark body.jw-app main,
html.dark body.jw-app .jw-wrap {
  background: var(--jw-bg) !important;
  background-color: var(--jw-bg) !important;
  color: var(--jw-body) !important;
  background-image: none !important;
}

html.dark body.jw-app .jw-header {
  background: color-mix(in srgb, var(--jw-bg) 88%, transparent) !important;
  border-color: var(--jw-border) !important;
}

html.dark body.jw-app .jw-contact,
html.dark body.jw-app .jw-contact__body,
html.dark body.jw-app .jw-page-banner,
html.dark body.jw-app .jw-catalog,
html.dark body.jw-app .jw-catalog.jw-wrap,
html.dark body.jw-app .jw-catalog__body,
html.dark body.jw-app .jw-section--light,
html.dark body.jw-app .jw-newsletter,
html.dark body.jw-app .jw-quotes,
html.dark body.jw-app .jw-pdp--app,
html.dark body.jw-app .jw-account,
html.dark body.jw-app .jw-account__body,
html.dark body.jw-app .jw-auth,
html.dark body.jw-app .jw-content,
html.dark body.jw-app .jw-cart,
html.dark body.jw-app .jw-checkout,
html.dark body.jw-app .jw-stories,
html.dark body.jw-app .jw-about,
html.dark body.jw-app .jw-faq {
  background: var(--jw-bg) !important;
  background-color: var(--jw-bg) !important;
}

html.dark body.jw-app .jw-catalog-head,
html.dark body.jw-app .jw-catalog-filters,
html.dark body.jw-app .jw-contact-card,
html.dark body.jw-app .jw-auth__card,
html.dark body.jw-app .jw-auth__card--modal,
html.dark body.jw-app .jw-journal-card,
html.dark body.jw-app .jw-pdp__tabs,
html.dark body.jw-app .jw-pdp__qty-ctl,
html.dark body.jw-app .jw-pdp__buybar,
html.dark body.jw-app .jw-account-app__hero,
html.dark body.jw-app .jw-account-app__tabs,
html.dark body.jw-app .jw-account-app__panel,
html.dark body.jw-app .jw-account-app__logout,
html.dark body.jw-app .jw-section__all,
html.dark body.jw-app .jw-features li,
html.dark body.jw-app .jw-quote,
html.dark body.jw-app .jw-action,
html.dark body.jw-app .jw-burger,
html.dark body.jw-app .jw-drawer__item,
html.dark body.jw-app .jw-auth-modal__sheet,
html.dark body.jw-app .jw-auth-modal__close,
html.dark body.jw-app .jw-story-article,
html.dark body.jw-app .jw-cart__card,
html.dark body.jw-app .jw-cart__totals,
html.dark body.jw-app .jw-filter-sheet__top,
html.dark body.jw-app .jw-filter-sheet__foot,
html.dark body.jw-app .jw-catalog-sort select,
html.dark body.jw-app .jw-catalog-views button,
html.dark body.jw-app .jw-catalog-chip {
  background: var(--jw-surface) !important;
  background-color: var(--jw-surface) !important;
  border-color: var(--jw-border) !important;
  color: var(--jw-body);
}

html.dark body.jw-app .jw-drawer,
html.dark body.jw-app .jw-drawer__foot,
html.dark body.jw-app .jw-mobile__panel,
html.dark body.jw-app .jw-filter-sheet__panel,
html.dark body.jw-app .jw-tabbar {
  background: var(--jw-surface) !important;
  background-color: var(--jw-surface) !important;
  border-color: var(--jw-border) !important;
  color: var(--jw-body) !important;
}

html.dark body.jw-app .jw-pgallery__scroller,
html.dark body.jw-app .jw-journal-card__img,
html.dark body.jw-app .jw-drawer__thumb,
html.dark body.jw-app .jw-cat__media {
  background: var(--jw-light) !important;
  border-color: var(--jw-border);
}

html.dark body.jw-app .jw-pc__media,
html.dark body.jw-app .jw-pc__placeholder {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: var(--jw-border);
}

html.dark body.jw-app .jw-pc__title,
html.dark body.jw-app .jw-pc__price,
html.dark body.jw-app .jw-heading h2,
html.dark body.jw-app .jw-pdp__title,
html.dark body.jw-app .jw-page-banner__title,
html.dark body.jw-app .jw-logo__text,
html.dark body.jw-app .jw-journal-card__body h3,
html.dark body.jw-app .jw-account-app__name,
html.dark body.jw-app .jw-contact-card__title,
html.dark body.jw-app .jw-contact-card__value,
html.dark body.jw-app .jw-auth__title,
html.dark body.jw-app .jw-nav__links a,
html.dark body.jw-app .jw-mobile__nav a,
html.dark body.jw-app .jw-drawer__name,
html.dark body.jw-app .jw-drawer__price {
  color: var(--jw-heading) !important;
}

html.dark body.jw-app,
html.dark body.jw-app .jw-pdp__rich,
html.dark body.jw-app .jw-contact-page__lead,
html.dark body.jw-app .jw-drawer__empty,
html.dark body.jw-app .jw-drawer__hint {
  color: var(--jw-body) !important;
}

html.dark body.jw-app .jw-muted,
html.dark body.jw-app .jw-pc__price .compare,
html.dark body.jw-app .jw-journal-card__more,
html.dark body.jw-app .jw-account-app__meta,
html.dark body.jw-app .jw-account-app__eyebrow,
html.dark body.jw-app .jw-contact-card__label,
html.dark body.jw-app .jw-contact-card__desc,
html.dark body.jw-app .jw-section__all,
html.dark body.jw-app .jw-tabbar__label,
html.dark body.jw-app .jw-account-app__shop {
  color: var(--jw-muted) !important;
}

html.dark body.jw-app .jw-pdp__excerpt {
  color: #a1a1aa !important;
}

html.dark body.jw-app .jw-btn,
html.dark body.jw-app .jw-pc__cart,
html.dark body.jw-app .jw-account-app__tab.is-active,
html.dark body.jw-app .jw-account-app__avatar,
html.dark body.jw-app .jw-pdp__buy,
html.dark body.jw-app .jw-pc__badge:not(.jw-pc__badge--sale) {
  background: var(--jw-brand) !important;
  background-color: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

html.dark body.jw-app .jw-btn--outline {
  background: transparent !important;
  color: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
}

html.dark body.jw-app .jw-btn--outline:hover {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

html.dark body.jw-app .jw-pc__badge--sale {
  background: var(--jw-discount) !important;
  color: #fff !important;
}

html.dark body.jw-app .jw-auth__field input,
html.dark body.jw-app .jw-catalog-filters__prices input,
html.dark body.jw-app input,
html.dark body.jw-app textarea,
html.dark body.jw-app select {
  background: var(--jw-light) !important;
  color: var(--jw-heading) !important;
  border-color: var(--jw-border) !important;
}

html.dark body.jw-app .jw-auth__field input::placeholder,
html.dark body.jw-app input::placeholder,
html.dark body.jw-app textarea::placeholder {
  color: var(--jw-muted) !important;
}

/* Beat globals Tailwind remaps inside jewelry account & shared panels */
html.dark body.jw-app .jw-account-app__panel .bg-white,
html.dark body.jw-app .jw-account-app__panel [class*="bg-white"],
html.dark body.jw-app .jw-account-app__panel [class*="bg-[#F"],
html.dark body.jw-app .jw-contact-card .bg-white,
html.dark body.jw-app .jw-pdp [class*="bg-white"] {
  background: transparent !important;
  background-color: transparent !important;
}

html.dark body.jw-app .jw-account-app__panel [class*="text-[#111110]"],
html.dark body.jw-app .jw-account-app__panel [class*="text-[#3D3A36]"],
html.dark body.jw-app .jw-account-app__panel .text-black {
  color: var(--jw-heading) !important;
}

html.dark body.jw-app .jw-account-app__panel [class*="text-[#615C53]"],
html.dark body.jw-app .jw-account-app__panel [class*="text-[#7A756C]"],
html.dark body.jw-app .jw-account-app__panel [class*="text-[#A09B93]"] {
  color: var(--jw-muted) !important;
}

html.dark body.jw-app .jw-account-app__panel [class*="border-[#E6E3D9]"],
html.dark body.jw-app .jw-account-app__panel [class*="border-[#EDEBE5]"] {
  border-color: var(--jw-border) !important;
}

html.dark body.jw-app .jw-footer {
  background: var(--jw-bg) !important;
  color: var(--jw-muted) !important;
}

html.dark body.jw-app .jw-footer h3,
html.dark body.jw-app .jw-footer__logo .jw-logo__text,
html.dark body.jw-app .jw-footer a:hover {
  color: var(--jw-heading) !important;
}

html.dark body.jw-app .jw-footer a,
html.dark body.jw-app .jw-footer__contact,
html.dark body.jw-app .jw-footer li {
  color: var(--jw-muted) !important;
}

html.dark body.jw-app .jw-nav__links a[aria-current="page"],
html.dark body.jw-app .jw-nav__links a:hover {
  background: transparent !important;
  color: var(--jw-accent, var(--jw-brand)) !important;
}

html.dark body.jw-app .jw-tabbar__item.is-active {
  background: var(--jw-light) !important;
  color: var(--jw-heading) !important;
}

html.dark body.jw-app .jw-pdp__tablist {
  background: var(--jw-light) !important;
}

html.dark body.jw-app .jw-pdp__tab.is-active {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

html.dark body.jw-app .jw-pdp__spec {
  background: var(--jw-light) !important;
}

html.dark body.jw-app .jw-auth-modal__backdrop {
  background: rgba(0, 0, 0, 0.65) !important;
}

html.dark body.jw-app .jw-auth__mode-pills button.is-active {
  background: var(--jw-bg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

html.dark body.jw-app .jw-story-article {
  background: var(--jw-surface) !important;
  color: var(--jw-body) !important;
}

/* Nav: accent text only — no underline / pill */
body.jw-app .jw-nav__links a::after,
.jw-nav__links a::after {
  display: none !important;
  content: none !important;
  transform: none !important;
}

body.jw-app .jw-nav__links a,
.jw-nav__links a {
  background: transparent !important;
  transition: color 280ms var(--jw-ease) !important;
}

body.jw-app .jw-nav__links a:hover,
body.jw-app .jw-nav__links a[aria-current="page"],
.jw-nav__links a:hover,
.jw-nav__links a[aria-current="page"],
html.dark body.jw-app .jw-nav__links a:hover,
html.dark body.jw-app .jw-nav__links a[aria-current="page"] {
  background: transparent !important;
  color: var(--jw-accent, var(--jw-brand)) !important;
}

body.jw-app .jw-mobile__nav a:hover,
body.jw-app .jw-mobile__nav a[aria-current="page"],
html.dark body.jw-app .jw-mobile__nav a:hover,
html.dark body.jw-app .jw-mobile__nav a[aria-current="page"] {
  color: var(--jw-accent, var(--jw-brand)) !important;
  background: transparent !important;
}

/* —— Full theme revision: kill indigo/gold leftovers under jewelry —— */
body.jw-app .btn-outline-gold,
body.jw-app .btn-premium,
body.jw-app a.btn-outline-gold,
body.jw-app button.btn-outline-gold {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0.7rem 1.5rem !important;
  border: 1px solid var(--jw-brand) !important;
  border-radius: 14px !important;
  background: transparent !important;
  color: var(--jw-brand) !important;
  font-family: var(--jw-font) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

body.jw-app .btn-outline-gold:hover,
body.jw-app .btn-premium:hover,
body.jw-app a.btn-outline-gold:hover {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
  border-color: var(--jw-brand) !important;
  box-shadow: none !important;
  filter: none !important;
}

body.jw-app .btn-premium::after,
body.jw-app .link-premium::after {
  display: none !important;
}

body.jw-app .input-field,
body.jw-app .jw-field,
body.jw-app .select-field,
body.jw-app textarea.input-field,
body.jw-app select.input-field {
  border: 1px solid var(--jw-border) !important;
  border-radius: 14px !important;
  background: var(--jw-surface) !important;
  color: var(--jw-heading) !important;
  box-shadow: none !important;
  outline: none !important;
}

body.jw-app .input-field:focus,
body.jw-app .jw-field:focus,
body.jw-app .select-field:focus,
body.jw-app textarea.input-field:focus,
body.jw-app select.input-field:focus {
  border-color: var(--jw-brand) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--jw-brand) 16%, transparent) !important;
  ring: none !important;
}

body.jw-app .filter-chip,
body.jw-app .filter-chip-inactive,
body.jw-app .filter-chip-active,
body.jw-app .auth-tab,
body.jw-app .auth-tab-active,
body.jw-app .auth-tab-inactive {
  border-color: var(--jw-border) !important;
  background: var(--jw-surface) !important;
  color: var(--jw-body) !important;
  box-shadow: none !important;
}

body.jw-app .filter-chip-active,
body.jw-app .auth-tab-active {
  background: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

body.jw-app .filter-chip-inactive:hover,
body.jw-app .auth-tab-inactive:hover {
  background: var(--jw-light) !important;
  color: var(--jw-heading) !important;
  border-color: var(--jw-border) !important;
}

/* Gold / cream hex → jewelry tokens on every jewelry surface */
body.jw-app [class*="text-[#9C7E55]"],
body.jw-app [class*="text-[#85693F]"],
body.jw-app .prose a {
  color: var(--jw-heading) !important;
}

body.jw-app [class*="text-[#615C53]"],
body.jw-app [class*="text-[#7A756C]"],
body.jw-app [class*="text-[#8F8A80]"],
body.jw-app [class*="text-[#A09B93]"] {
  color: var(--jw-muted) !important;
}

body.jw-app [class*="text-[#111110]"],
body.jw-app [class*="text-[#3D3A36]"],
body.jw-app .text-black {
  color: var(--jw-heading) !important;
}

body.jw-app [class*="border-[#9C7E55]"],
body.jw-app [class*="border-[#D8C9AE]"],
body.jw-app [class*="border-[#E6E3D9]"],
body.jw-app [class*="border-[#EDEBE5]"],
body.jw-app [class*="border-[#EEEAE0]"] {
  border-color: var(--jw-border) !important;
}

body.jw-app [class*="bg-[#9C7E55]"],
body.jw-app [class*="bg-[#F6F4ED]"],
body.jw-app [class*="bg-[#FBF8F1]"],
body.jw-app [class*="bg-[#F7F6F3]"],
body.jw-app [class*="bg-[#FBFAF5]"] {
  background-color: var(--jw-light) !important;
}

body.jw-app [class*="hover:bg-[#9C7E55]"]:hover {
  background-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

body.jw-app [class*="hover:text-[#9C7E55]"]:hover {
  color: var(--jw-brand) !important;
}

body.jw-app [class*="accent-[#9C7E55]"] {
  accent-color: var(--jw-brand) !important;
}

body.jw-app .cms-richtext__body {
  color: var(--jw-body) !important;
  font-weight: 300;
  line-height: 1.8;
}
body.jw-app .cms-richtext__body p,
body.jw-app .cms-richtext__body li {
  color: var(--jw-body) !important;
}
body.jw-app .cms-richtext__body h2,
body.jw-app .cms-richtext__body h3 {
  color: var(--jw-primary) !important;
  font-family: var(--jw-font) !important;
  font-weight: 400;
}
body.jw-app .cms-richtext__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.75rem auto;
  border-radius: var(--jw-radius-sm, 12px);
}

body.jw-app .jw-theme-toggle,
body.jw-app .jw-header__theme button.jw-theme-toggle {
  color: var(--jw-heading) !important;
}

body.jw-app .jw-theme-toggle svg {
  stroke: currentColor !important;
  color: inherit !important;
}

/* Account app polish — all breakpoints */
.jw-account-app {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  gap: 0.85rem;
  padding-bottom: 1rem;
}

.jw-account-app__hero {
  gap: 0.85rem;
  padding: 1rem;
}

.jw-account-app__avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

.jw-account-app__name {
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  word-break: break-word;
}

.jw-account-app__meta {
  font-size: 0.8rem;
}

.jw-account-app__tabs {
  gap: 0.3rem;
  padding: 0.25rem;
  margin: 0 -0.15rem;
}

.jw-account-app__tab {
  min-height: 40px;
  padding: 0 0.7rem;
  font-size: 0.72rem;
}

.jw-account-app__tab-icon {
  display: inline-flex;
}

.jw-account-app__panel {
  padding: 1rem;
  overflow: hidden;
}

.jw-account-app__panel > * {
  max-width: 100%;
}

.jw-account-app__panel .grid {
  gap: 0.85rem !important;
}

.jw-account-app__foot {
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .jw-account-app {
    gap: 1.1rem;
  }
  .jw-account-app__hero {
    padding: 1.25rem 1.35rem;
  }
  .jw-account-app__panel {
    padding: 1.35rem 1.4rem;
  }
}

/* Quantity stepper in jewelry cart drawer */
body.jw-app .jw-drawer [class*="hover:text-[#9C7E55]"]:hover,
body.jw-cart-open [class*="hover:text-[#9C7E55]"]:hover {
  color: var(--jw-brand) !important;
}

body.jw-app .jw-drawer button,
body.jw-cart-open .jw-drawer button {
  color: inherit;
}

/* —— Blog / story detail (jewelry) —— */
.jw-story {
  background: var(--jw-bg);
}

.jw-story-article {
  background: var(--jw-bg) !important;
  color: var(--jw-body);
}

.jw-story__sheet {
  width: 100%;
  max-width: var(--jw-container);
  margin-inline: auto;
  padding-top: clamp(1rem, 3vw, 1.75rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.jw-story-featured {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 60vh;
  min-height: 220px;
  margin: 1.15rem 0 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--jw-border);
  background: var(--jw-light);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 18px 48px rgba(15, 15, 18, 0.08);
}

.jw-story-featured img,
.jw-story-featured video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--jw-light);
}

/* next/image fill — keep media pinned to the featured frame */
.jw-story-featured > span:not(.jw-story-featured__shade),
.jw-story-featured > div {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.jw-story-featured__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 10, 0.12) 0%,
      rgba(8, 8, 10, 0.08) 40%,
      rgba(8, 8, 10, 0.72) 100%
    );
}

.jw-story-featured__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3.5vw, 1.75rem);
  color: #fff;
}

.jw-story-featured__copy .jw-story-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.jw-story-featured__copy .jw-story-title {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.jw-story-featured__copy .jw-story-meta {
  color: rgba(255, 255, 255, 0.82);
}

.jw-story-header {
  margin-bottom: 1.75rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.jw-story-hero {
  position: relative;
  isolation: isolate;
  min-height: min(68vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--jw-light);
}

.jw-story-hero--plain {
  min-height: 0;
  align-items: stretch;
  padding: 2.25rem 0 2rem;
  border-bottom: 1px solid var(--jw-border);
}

.jw-story-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jw-story-hero__media img,
.jw-story-hero__media video,
.jw-story-hero__media span {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.jw-story-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.18) 0%, rgba(8, 8, 10, 0.08) 35%, rgba(8, 8, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 8, 10, 0.22) 0%, transparent 55%);
  pointer-events: none;
}

.jw-story-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--jw-container, 1200px);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.25rem;
}

.jw-story-hero--plain .jw-story-hero__inner {
  padding-block: 0.25rem 0;
}

.jw-story-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 220ms var(--jw-ease), color 220ms var(--jw-ease);
}

.jw-story-back:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.jw-story-back--ink {
  border-color: var(--jw-border);
  background: var(--jw-surface);
  color: var(--jw-heading);
}

.jw-story-back--ink:hover {
  background: var(--jw-light);
  color: var(--jw-brand, var(--jw-primary));
}

.jw-story-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-story-hero--plain .jw-story-kicker {
  color: var(--jw-muted);
}

.jw-story-title {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: var(--jw-heading);
  overflow-wrap: anywhere;
}

.jw-story-hero--plain .jw-story-title {
  max-width: none;
  color: var(--jw-heading);
}

.jw-story-excerpt {
  margin: 0.85rem 0 0;
  max-width: none;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--jw-body);
}

.jw-story-excerpt--below {
  margin: 0 0 1.75rem;
}

.jw-story-hero--plain .jw-story-excerpt {
  color: var(--jw-body);
}

.jw-story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--jw-muted);
}

.jw-story-hero--plain .jw-story-meta {
  color: var(--jw-muted);
}

.jw-story-meta__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.jw-story-body {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.jw-story-prose {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--jw-body);
}

.jw-story-prose > *:first-child {
  margin-top: 0;
}

.jw-story-prose h2,
.jw-story-prose h3,
.jw-story-prose h4 {
  margin: 2rem 0 0.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--jw-heading);
}

.jw-story-prose h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
}

.jw-story-prose h3 {
  font-size: 1.2rem;
}

.jw-story-prose p {
  margin: 0 0 1.15rem;
}

.jw-story-prose a {
  color: var(--jw-brand, var(--jw-primary));
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.jw-story-prose img {
  display: block;
  width: 100%;
  height: auto;
  margin: 1.75rem 0;
  border-radius: var(--jw-app-radius, 18px);
}

.jw-story-prose blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.15rem;
  border-left: 2px solid var(--jw-brand, var(--jw-primary));
  border-radius: 0 var(--jw-app-radius, 14px) var(--jw-app-radius, 14px) 0;
  background: var(--jw-light);
  color: var(--jw-heading);
  font-style: normal;
}

.jw-story-prose ul,
.jw-story-prose ol {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
}

.jw-story-prose li {
  margin: 0.35rem 0;
}

.jw-story-prose hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--jw-border);
}

.jw-story-end {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.jw-story-end span {
  display: block;
  width: 2.75rem;
  height: 1px;
  background: var(--jw-border);
}

.jw-story-end i {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--jw-brand, var(--jw-primary));
  opacity: 0.55;
  font-style: normal;
}

.jw-story-related {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--jw-border);
  background: var(--jw-bg);
}

.jw-story-related > .jw-container {
  max-width: var(--jw-container);
}

.jw-story-related__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .jw-story-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.jw-story-related__excerpt {
  margin: 0.35rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--jw-muted);
}

.jw-story-footer {
  display: flex;
  justify-content: center;
  padding: 1.75rem 0 3rem;
  border-top: 1px solid var(--jw-border);
}

body.jw-app .jw-story__sheet {
  max-width: var(--jw-container) !important;
  margin-inline: auto;
}

body.jw-app .jw-story-featured {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 60vh;
  min-height: 220px;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 16px 40px rgba(15, 15, 18, 0.07);
}

.jw-story-footer .jw-story__sheet {
  padding-top: 0;
  padding-bottom: 0;
}

html.dark body.jw-app .jw-story-featured {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 16px 40px rgba(0, 0, 0, 0.28);
}

html.dark body.jw-app .jw-story-hero--plain,
html.dark .jw-story-hero--plain {
  background: var(--jw-surface);
}

html.dark body.jw-app .jw-story-related,
html.dark body.jw-app .jw-story-footer,
html.dark body.jw-app .jw-story-article {
  background: var(--jw-bg) !important;
}

html.dark body.jw-app .jw-header {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 36px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .jw-story-hero {
    min-height: min(72vh, 720px);
  }
  .jw-story-hero__inner {
    padding: 2rem 1.5rem 2.75rem;
  }
  .jw-story__sheet {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }

  .jw-story-featured {
    margin-bottom: 1.75rem;
    border-radius: 24px;
    height: 60vh;
  }

  .jw-story-featured__copy {
    padding: 1.35rem 1.75rem 1.5rem;
  }
}

/* —— Express checkout (jw-co) —— */
.jw-co-loading {
  min-height: 40vh;
}

.jw-co {
  background: var(--jw-bg, #fff) !important;
  background-color: var(--jw-bg, #fff) !important;
  color: var(--jw-body, #3a3a3e);
  padding: 1.25rem 0 3.5rem;
}

.jw-co__inner {
  width: 100%;
  max-width: var(--jw-container, 1120px);
  margin: 0 auto;
  padding: 0 var(--jw-page-pad, 1.25rem);
}

.jw-co__head {
  margin-bottom: 1.35rem;
}

.jw-co__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jw-muted, #6b6b73);
}

.jw-co__title {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--jw-heading, #0a0a0b);
}

.jw-co__error {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, #dc2626 35%, transparent);
  background: color-mix(in srgb, #dc2626 8%, #fff);
  color: #b91c1c;
  font-size: 0.88rem;
}

.jw-co__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .jw-co__grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    align-items: start;
    gap: 1.75rem;
  }
}

.jw-co__main {
  display: grid;
  gap: 0.9rem;
}

.jw-co-card {
  padding: 1.15rem 1.15rem 1.25rem;
  border: 1px solid var(--jw-border, #e8e8ec);
  border-radius: 18px;
  background: var(--jw-surface, #fff) !important;
  background-color: var(--jw-surface, #fff) !important;
}

.jw-co-card--soft {
  padding-block: 0.35rem;
}

.jw-co-card__title {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-muted, #6b6b73);
}

.jw-co-fields {
  display: grid;
  gap: 0.75rem;
}

.jw-co-fields--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .jw-co-fields--2 {
    grid-template-columns: 1fr 1fr;
  }
  .jw-co-field--full {
    grid-column: 1 / -1;
  }
}

.jw-co-field {
  display: grid;
  gap: 0.35rem;
}

.jw-co-field > span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jw-muted, #6b6b73);
}

.jw-co-field input,
.jw-co-field select,
.jw-co-note,
.jw-co-coupon input {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--jw-border, #e8e8ec);
  border-radius: 14px;
  background: var(--jw-bg, #fff);
  color: var(--jw-heading, #0a0a0b);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 180ms ease;
}

.jw-co-field input:focus,
.jw-co-field select:focus,
.jw-co-note:focus,
.jw-co-coupon input:focus {
  border-color: var(--jw-brand, var(--jw-primary, #0a0a0b));
}

.jw-co-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--jw-body);
  cursor: pointer;
}

.jw-co-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  padding: 0.3rem;
  border-radius: 14px;
  background: var(--jw-light, #f1f1f3);
}

.jw-co-seg--sm {
  grid-template-columns: 1fr 1fr;
  max-width: 280px;
}

.jw-co-seg button {
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--jw-muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.jw-co-seg button.is-active {
  background: var(--jw-surface, #fff);
  color: var(--jw-heading);
}

.jw-co-zones {
  display: grid;
  gap: 0.5rem;
}

.jw-co-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--jw-border, #e8e8ec);
  border-radius: 14px;
  background: var(--jw-bg, #fff);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.jw-co-zone.is-active {
  border-color: var(--jw-brand, var(--jw-primary, #0a0a0b));
  background: color-mix(in srgb, var(--jw-brand, #0a0a0b) 6%, #fff);
}

.jw-co-zone__name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--jw-heading);
}

.jw-co-zone__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--jw-muted);
  white-space: nowrap;
}

.jw-co-zone.is-active .jw-co-zone__price {
  color: var(--jw-heading);
}

.jw-co-pickup {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--jw-light, #f1f1f3);
  font-size: 0.9rem;
  line-height: 1.55;
}

.jw-co-pickup p {
  margin: 0;
}

.jw-co-pickup p + p {
  margin-top: 0.35rem;
}

.jw-co-hint {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--jw-heading);
}

.jw-co-hint--muted {
  color: var(--jw-muted);
}

.jw-co-pay {
  display: grid;
  gap: 0.5rem;
}

.jw-co-pay__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--jw-border, #e8e8ec);
  border-radius: 14px;
  background: var(--jw-bg, #fff);
  cursor: pointer;
  transition: border-color 160ms ease;
}

.jw-co-pay__item.is-active {
  border-color: var(--jw-brand, var(--jw-primary, #0a0a0b));
}

.jw-co-pay__item input {
  margin-top: 0.2rem;
  accent-color: var(--jw-brand, var(--jw-primary, #0a0a0b));
}

.jw-co-pay__item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 560;
  color: var(--jw-heading);
}

.jw-co-pay__item em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--jw-muted);
}

.jw-co-note-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 0.35rem;
  border: 0;
  background: transparent;
  color: var(--jw-heading);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}

.jw-co-note {
  margin: 0 0 0.65rem;
  resize: vertical;
  min-height: 88px;
}

.jw-co-summary {
  padding: 1.2rem 1.15rem 1.35rem;
  border: 1px solid var(--jw-border, #e8e8ec);
  border-radius: 20px;
  background: var(--jw-surface, #fff) !important;
  background-color: var(--jw-surface, #fff) !important;
}

@media (min-width: 1024px) {
  .jw-co-summary {
    position: sticky;
    top: 5.5rem;
  }
}

.jw-co-summary__title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-muted);
}

.jw-co-summary__items {
  margin: 0 0 0.9rem;
  padding: 0 0 0.9rem;
  list-style: none;
  border-bottom: 1px solid var(--jw-border, #e8e8ec);
}

.jw-co-summary__items li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--jw-body);
  align-items: flex-start;
}

.jw-co-summary__items li + li {
  margin-top: 0.45rem;
}

.jw-co-summary__item-main {
  min-width: 0;
}

.jw-co-summary__items small {
  color: var(--jw-muted);
}

.jw-co-summary__item-price {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.jw-co-summary__item-left {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.jw-co-summary__thumbWrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.jw-co-summary__thumb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--jw-border, #e8e8ec);
  background: var(--jw-bg, #fff);
  object-fit: cover;
  display: block;
  overflow: hidden;
}

.jw-co-summary__qty {
  position: absolute;
  top: -7px;
  right: -9px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--jw-brand, var(--jw-primary, #0a0a0b));
  color: var(--jw-bg, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  border: 2px solid var(--jw-surface, #fff);
  line-height: 1;
}

.jw-co-summary__item-title {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jw-co-coupon {
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--jw-border, #e8e8ec);
}

.jw-co-coupon__row {
  display: flex;
  gap: 0.45rem;
}

.jw-co-coupon__row button,
.jw-co-coupon__applied button {
  flex-shrink: 0;
  min-height: 46px;
  padding: 0 0.95rem;
  border: 1px solid var(--jw-heading, #0a0a0b);
  border-radius: 14px;
  background: transparent;
  color: var(--jw-heading);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.jw-co-coupon__row button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.jw-co-coupon__applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
}

.jw-co-coupon__applied button {
  min-height: 36px;
  border: 0;
  background: transparent;
  text-decoration: underline;
  font-weight: 500;
}

.jw-co-coupon__err {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: #b91c1c;
}

.jw-co-totals {
  margin: 0;
}

.jw-co-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  color: var(--jw-body);
}

.jw-co-totals dt,
.jw-co-totals dd {
  margin: 0;
}

.jw-co-totals dd {
  font-variant-numeric: tabular-nums;
}

.jw-co-totals__discount {
  color: var(--jw-brand, var(--jw-primary));
}

.jw-co-totals__grand {
  margin-top: 0.65rem !important;
  padding-top: 0.75rem;
  border-top: 1px solid var(--jw-border, #e8e8ec);
  font-size: 1.05rem !important;
  font-weight: 600;
  color: var(--jw-heading) !important;
}

.jw-co-submit {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--jw-brand, var(--jw-primary, #0a0a0b)) !important;
  color: var(--jw-on-primary, #fff) !important;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
}

.jw-co-submit:hover:not(:disabled) {
  opacity: 0.92;
}

.jw-co-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.jw-co-secure {
  margin: 0.7rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--jw-muted);
}

body.jw-app .jw-checkout,
body.jw-app .jw-checkout__body,
body.jw-app .jw-co,
html.dark body.jw-app .jw-checkout,
html.dark body.jw-app .jw-co {
  background: var(--jw-bg) !important;
  background-color: var(--jw-bg) !important;
}

body.jw-app .jw-co-card,
body.jw-app .jw-co-summary {
  background: var(--jw-surface) !important;
  border-color: var(--jw-border) !important;
}

/* Kill leftover cream/gray remaps inside checkout */
body.jw-app .jw-co [class*="bg-[#F6F4ED]"],
body.jw-app .jw-checkout [class*="bg-[#F6F4ED]"] {
  background-color: transparent !important;
}

/* App-compact checkout */
.jw-co--app {
  padding: 0.15rem 0 2.25rem !important;
}

.jw-co--app .jw-co__inner {
  max-width: 1040px !important;
  padding: 0 1rem !important;
}

.jw-co--app .jw-co__head {
  margin-bottom: 1.35rem !important;
  padding-bottom: 0;
}

.jw-co--app .jw-co__eyebrow {
  display: none;
}

.jw-co--app .jw-co__title {
  font-size: 1.35rem !important;
  letter-spacing: -0.03em;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.jw-co--app .jw-co__error {
  padding: 0.65rem 0.75rem !important;
  border-radius: 12px !important;
  font-size: 0.8rem !important;
  margin-bottom: 0.65rem !important;
}

.jw-co--app .jw-co__grid {
  gap: 0.7rem !important;
}

.jw-co--app .jw-co__main {
  gap: 0.5rem !important;
}

.jw-co--app .jw-co-card {
  padding: 0.85rem 0.95rem 0.95rem !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.jw-co--app .jw-co-card__title {
  margin-bottom: 0.5rem !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.1em !important;
}

.jw-co--app .jw-co-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.jw-co--app .jw-co-card__row .jw-co-card__title {
  margin-bottom: 0 !important;
}

.jw-co--app .jw-co-fields {
  gap: 0.45rem !important;
}

.jw-co--app .jw-co-field > span {
  font-size: 0.62rem !important;
  letter-spacing: 0.04em !important;
}

.jw-co--app .jw-co-field input,
.jw-co--app .jw-co-field select,
.jw-co--app .jw-co-select,
.jw-co--app .jw-co-note,
.jw-co--app .jw-co-coupon input {
  min-height: 40px !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 11px !important;
  font-size: 0.88rem !important;
}

.jw-co--app .jw-co-check {
  margin-bottom: 0.5rem !important;
  font-size: 0.84rem !important;
  gap: 0.45rem !important;
}

.jw-co--app .jw-co-seg {
  margin-bottom: 0.5rem !important;
  border-radius: 11px !important;
  padding: 0.22rem !important;
  gap: 0.25rem !important;
}

.jw-co--app .jw-co-seg button {
  min-height: 36px !important;
  font-size: 0.8rem !important;
  border-radius: 9px !important;
}

.jw-co--app .jw-co-ship {
  display: grid;
  gap: 0.5rem;
}

.jw-co--app .jw-co-saved {
  display: grid;
  gap: 0.35rem;
}

.jw-co--app .jw-co-hint {
  margin: 0 !important;
  font-size: 0.76rem !important;
}

.jw-co--app .jw-co-pickup {
  padding: 0.65rem 0.75rem !important;
  border-radius: 11px !important;
  font-size: 0.82rem !important;
}

.jw-co--app .jw-co-link {
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--jw-brand, var(--jw-primary));
  font: inherit;
  font-size: 0.74rem;
  font-weight: 560;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.jw-co--app .jw-co-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 13px;
  padding-right: 2rem !important;
}

.jw-co--app .jw-co-pay {
  gap: 0.35rem !important;
}

.jw-co--app .jw-co-pay__item {
  padding: 0.55rem 0.7rem !important;
  border-radius: 11px !important;
  gap: 0.55rem !important;
}

.jw-co--app .jw-co-pay__item strong {
  font-size: 0.84rem !important;
}

.jw-co--app .jw-co-pay__item em {
  font-size: 0.72rem !important;
}

.jw-co--app .jw-co__sub {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--jw-muted) 92%, transparent);
}

.jw-co-methods {
  display: grid;
  gap: 0.6rem;
}

@media (min-width: 640px) {
  .jw-co-methods {
    grid-template-columns: 1fr 1fr;
  }
}

.jw-co-method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--jw-border) 88%, transparent);
  background: var(--jw-surface, #fff);
  cursor: pointer;
  transition: border-color 0.18s ease;
}

.jw-co-method:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--jw-ink, #0f172a) 28%, transparent);
}

.jw-co-method.is-active {
  border-color: var(--jw-brand, var(--jw-primary, #9c7e55));
  background: color-mix(in srgb, var(--jw-brand, #9c7e55) 6%, var(--jw-surface, #fff));
}

.jw-co-method:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.jw-co-method__radio {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  border: 1.5px solid #c8c8ce;
  background: transparent;
  box-sizing: border-box;
}

.jw-co-method.is-active .jw-co-method__radio {
  border-color: var(--jw-brand, var(--jw-primary, #9c7e55));
  background:
    radial-gradient(
      circle,
      var(--jw-brand, var(--jw-primary, #9c7e55)) 0 38%,
      transparent 42%
    );
}

.jw-co-method__body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.jw-co-method__body strong {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--jw-ink, #0f172a);
}

.jw-co-method__body em,
.jw-co-method__body small {
  font-style: normal;
  font-size: 0.76rem;
  color: var(--jw-muted, #64748b);
}

.jw-co-method__body small {
  font-size: 0.72rem;
  opacity: 0.9;
}

.jw-co-method__price {
  font-size: 0.94rem;
  font-weight: 650;
  color: var(--jw-ink, #0f172a);
  white-space: nowrap;
}

.jw-co-express {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--jw-border, #e8e8ec);
}

.jw-co-split {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .jw-co-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 0.95rem;
  }

  .jw-co-split .jw-co-methods {
    grid-template-columns: 1fr;
  }
}

.jw-co-summary__pay {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--jw-border, #e8e8ec);
}

.jw-co-summary__pay-title {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-muted, #6b6b73);
}

.jw-co-pay--compact {
  gap: 0.45rem;
}

.jw-co-pay--compact .jw-co-pay__item {
  padding: 0.65rem 0.75rem;
}

.jw-co-pay--compact .jw-co-pay__item em {
  display: none;
}

.jw-co-couriers {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--jw-border, #e8e8ec);
  border-radius: 14px;
  background: var(--jw-bg, #fff);
  overflow: hidden;
}

.jw-co-courier {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--jw-border, #e8e8ec);
  background: var(--jw-bg, #fff);
}

.jw-co-courier:last-child {
  border-bottom: 0;
}

.jw-co-courier__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.jw-co-courier__head:hover {
  background: color-mix(in srgb, var(--jw-light, #f4f4f6) 70%, transparent);
}

.jw-co-courier.is-expanded .jw-co-courier__head,
.jw-co-courier.is-selected .jw-co-courier__head {
  background: color-mix(in srgb, var(--jw-light, #f4f4f6) 55%, transparent);
}

.jw-co-courier__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--jw-border, #e8e8ec) 85%, transparent);
  overflow: hidden;
  flex-shrink: 0;
}

.jw-co-courier__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.jw-co-courier__fallback {
  font-size: 0.7rem;
  font-weight: 650;
  color: var(--jw-muted, #6b6b73);
  letter-spacing: 0.04em;
}

.jw-co-courier__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.jw-co-courier__meta strong {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--jw-heading, #0a0a0b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jw-co-courier__badge {
  flex-shrink: 0;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: #f2f2f4;
  color: var(--jw-heading, #0a0a0b);
  font-size: 0.8rem;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.jw-co-courier__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  border: 1px solid var(--jw-border, #e8e8ec);
  background: #fff;
  color: var(--jw-muted, #6b6b73);
  flex-shrink: 0;
  transition: transform 160ms ease;
}

.jw-co-courier.is-expanded .jw-co-courier__chev {
  transform: rotate(90deg);
  color: var(--jw-heading, #0a0a0b);
}

.jw-co-courier__tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0 0.9rem 0.95rem;
  background: color-mix(in srgb, var(--jw-light, #f4f4f6) 55%, transparent);
}

.jw-co-courier__tier {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid #e4e4e8;
  background: #fff;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease;
  color: var(--jw-heading, #0a0a0b);
}

.jw-co-courier__tier:hover {
  border-color: color-mix(in srgb, #a855f7 35%, #e4e4e8);
}

.jw-co-courier__tier.is-active {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #a855f7 0%, #ec4899 55%, #f472b6 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 0 1px color-mix(in srgb, #a855f7 18%, transparent);
}

.jw-co-courier__tier input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.jw-co-courier__tier-eta {
  font-size: 0.8rem;
  color: #8a8a93;
  white-space: nowrap;
}

.jw-co-courier__tier-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--jw-heading, #0a0a0b);
  line-height: 1;
}

.jw-co-courier__tier-svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.jw-co-courier__tier-sep {
  color: #8a8a93;
  font-size: 0.85rem;
}

.jw-co-courier__tier-price {
  font-size: 0.9rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--jw-heading, #0a0a0b);
  white-space: nowrap;
}

.jw-co-courier.is-skeleton {
  cursor: default;
  pointer-events: none;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
}

.jw-co-courier.is-skeleton .jw-co-courier__logo,
.jw-co-courier.is-skeleton .jw-co-courier__meta strong,
.jw-co-courier.is-skeleton .jw-co-courier__badge,
.jw-co-courier.is-skeleton .jw-co-courier__chev {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.06));
  background-size: 200% 100%;
  animation: jw-co-shimmer 1.2s ease-in-out infinite;
  border-color: transparent;
  color: transparent;
}

.jw-co-courier.is-skeleton .jw-co-courier__meta strong {
  height: 12px;
  width: 55%;
  display: block;
  border-radius: 6px;
}

.jw-co-courier.is-skeleton .jw-co-courier__badge {
  height: 22px;
  width: 78px;
  border-radius: 999px;
}

@keyframes jw-co-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.jw-co-pay--cards {
  display: grid;
  gap: 0.55rem;
}

.jw-co-pay--cards .jw-co-pay__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--jw-border) 90%, transparent);
  background: var(--jw-surface, #fff);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.jw-co-pay--cards .jw-co-pay__item.is-active {
  border-color: var(--jw-brand, var(--jw-primary, #9c7e55));
  box-shadow: none;
}

.jw-co-pay--cards .jw-co-pay__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.jw-co-pay__radio {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  border: 1.5px solid #c8c8ce;
  background: transparent;
  box-sizing: border-box;
  flex-shrink: 0;
}

.jw-co-pay--cards .jw-co-pay__item.is-active .jw-co-pay__radio {
  border-color: var(--jw-brand, var(--jw-primary, #9c7e55));
  box-shadow: none;
  background:
    radial-gradient(
      circle,
      var(--jw-brand, var(--jw-primary, #9c7e55)) 0 38%,
      transparent 42%
    );
}

.jw-co-pay__body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.jw-co-pay__body strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--jw-ink, #0f172a);
}

.jw-co-pay__body em {
  font-style: normal;
  font-size: 0.74rem;
  color: var(--jw-muted, #64748b);
}

.jw-co--app .jw-co-method {
  padding: 0.9rem 0.95rem;
  border-radius: 13px;
}

.jw-co--app .jw-co-summary {
  position: sticky;
  top: 1rem;
  border-radius: 18px !important;
  padding: 1.1rem 1.05rem 1.15rem !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.jw-co--app .jw-co-submit {
  min-height: 50px !important;
  border-radius: 13px !important;
  font-weight: 650 !important;
  letter-spacing: 0.01em;
}

.jw-co--app .jw-co-card {
  transition: box-shadow 0.2s ease;
}

.jw-co--app .jw-co-card:focus-within {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--jw-ink, #0f172a) 10%, transparent),
    0 8px 24px rgba(15, 23, 42, 0.04);
}

@media (max-width: 820px) {
  .jw-co-method {
    grid-template-columns: auto 1fr;
  }
  .jw-co-method__price {
    grid-column: 2;
    justify-self: start;
  }
  .jw-co-courier__head {
    gap: 0.55rem;
    padding: 0.75rem 0.75rem;
  }
  .jw-co-courier__logo {
    width: 2.4rem;
    height: 2.4rem;
  }
  .jw-co-courier__badge {
    font-size: 0.74rem;
    padding: 0.28rem 0.55rem;
  }
  .jw-co-courier__tiers {
    padding: 0 0.75rem 0.85rem;
  }
}

.jw-co--app .jw-co-note-toggle {
  min-height: 40px !important;
  font-size: 0.82rem !important;
}

.jw-co--app .jw-co-note {
  min-height: 72px !important;
  margin-bottom: 0.35rem !important;
}

.jw-co--app .jw-co-summary {
  padding: 0.95rem 0.95rem 1.1rem !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.jw-co--app .jw-co-summary__title {
  margin-bottom: 0.55rem !important;
  font-size: 0.62rem !important;
}

.jw-co--app .jw-co-summary__items {
  margin-bottom: 0.55rem !important;
  padding-bottom: 0.55rem !important;
}

.jw-co--app .jw-co-summary__items li {
  font-size: 0.8rem !important;
}

.jw-co--app .jw-co-coupon {
  margin-bottom: 0.55rem !important;
  padding-bottom: 0.55rem !important;
}

.jw-co--app .jw-co-coupon__row button,
.jw-co--app .jw-co-coupon__applied button {
  min-height: 40px !important;
  border-radius: 11px !important;
  font-size: 0.76rem !important;
  padding: 0 0.75rem !important;
}

.jw-co--app .jw-co-totals {
  gap: 0.3rem !important;
  font-size: 0.82rem !important;
}

.jw-co--app .jw-co-totals__grand {
  margin-top: 0.35rem !important;
  padding-top: 0.45rem !important;
  font-size: 0.95rem !important;
}

.jw-co--app .jw-co-submit {
  min-height: 46px !important;
  margin-top: 0.6rem !important;
  border-radius: 999px !important;
  font-size: 0.88rem !important;
}

.jw-co--app .jw-co-secure {
  margin-top: 0.4rem !important;
  font-size: 0.64rem !important;
}

.jw-checkout .jw-co-crumb {
  padding: 1.25rem 0 0.85rem !important;
  margin: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
}

.jw-checkout .jw-co-crumb .jw-container {
  max-width: 1040px !important;
  padding-inline: 1rem !important;
}

.jw-checkout .jw-co-crumb ol {
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  gap: 0.2rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.jw-checkout__body {
  padding-top: 1.15rem !important;
  padding-bottom: 2rem !important;
}

@media (min-width: 1024px) {
  .jw-co--app .jw-co__grid {
    gap: 1.1rem !important;
    grid-template-columns: minmax(0, 1fr) 320px !important;
  }

  .jw-co--app .jw-co__inner {
    max-width: 1080px !important;
    padding: 0 1.25rem !important;
  }

  .jw-checkout .jw-co-crumb {
    padding: 1.55rem 0 1rem !important;
  }

  .jw-checkout .jw-co-crumb .jw-container {
    max-width: 1080px !important;
    padding-inline: 1.25rem !important;
  }

  .jw-co--app .jw-co__head {
    margin-bottom: 1.55rem !important;
  }

  .jw-co--app .jw-co__title {
    font-size: 1.5rem !important;
  }

  .jw-checkout__body {
    padding-top: 1.35rem !important;
  }
}

/* Account — fit-all tabs + compact chrome */
.jw-account-app {
  gap: 0.55rem !important;
  max-width: 760px !important;
  width: 100% !important;
  padding-inline: 0.65rem !important;
  box-sizing: border-box !important;
}

.jw-account-app__hero {
  gap: 0.7rem !important;
  padding: 0.75rem 0.85rem !important;
  border-radius: 16px !important;
}

.jw-account-app__avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 13px !important;
  font-size: 0.88rem !important;
}

.jw-account-app__eyebrow {
  font-size: 0.58rem !important;
}

.jw-account-app__name {
  margin-top: 0.1rem !important;
  font-size: 1rem !important;
}

.jw-account-app__meta {
  margin-top: 0.1rem !important;
  font-size: 0.74rem !important;
}

.jw-account-app__tabs {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 0.12rem !important;
  padding: 0.2rem !important;
  border-radius: 14px !important;
  overflow: visible !important;
  margin: 0 !important;
}

.jw-account-app__tab {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.18rem !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  padding: 0.35rem 0.1rem !important;
  border-radius: 11px !important;
  font-size: 0.58rem !important;
  font-weight: 560 !important;
  letter-spacing: 0 !important;
  line-height: 1.15 !important;
  white-space: normal !important;
  text-align: center !important;
}

.jw-account-app__tab-icon {
  display: inline-flex !important;
  flex-shrink: 0 !important;
}

.jw-account-app__tab-icon svg {
  width: 16px !important;
  height: 16px !important;
}

.jw-account-app__tab-label {
  display: block !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  padding-inline: 0.05rem;
}

.jw-account-app__panel {
  padding: 0.75rem 0.85rem !important;
  border-radius: 16px !important;
}

.jw-account-app__panel .grid {
  gap: 0.55rem !important;
}

.jw-account-app__foot {
  gap: 0.55rem !important;
  margin-top: 0.15rem;
}

.jw-account-app__logout,
.jw-account-app__shop {
  min-height: 40px !important;
  font-size: 0.78rem !important;
}

@media (min-width: 640px) {
  .jw-account-app__tab {
    flex-direction: row !important;
    min-height: 40px !important;
    padding: 0 0.35rem !important;
    font-size: 0.72rem !important;
    gap: 0.3rem !important;
    white-space: nowrap !important;
  }

  .jw-account-app__tab-label {
    overflow: visible !important;
    text-overflow: unset !important;
  }
}

@media (min-width: 768px) {
  .jw-account-app {
    gap: 0.65rem !important;
    max-width: 780px !important;
    padding-inline: 1rem !important;
  }
  .jw-account-app__hero {
    padding: 0.85rem 1rem !important;
  }
  .jw-account-app__tabs {
    gap: 0.2rem !important;
    padding: 0.22rem !important;
  }
  .jw-account-app__panel {
    padding: 0.9rem 1rem !important;
  }
  .jw-account-app__tab {
    font-size: 0.78rem !important;
    padding: 0 0.45rem !important;
  }
}

/* —— Cart bottom sheet + compact page —— */
.jw-drawer__handle {
  display: none;
  justify-content: center;
  padding: 0.5rem 0 0.1rem;
  flex-shrink: 0;
}

.jw-drawer__handle span {
  width: 2.2rem;
  height: 0.26rem;
  border-radius: 999px;
  background: var(--jw-border);
}

@media (max-width: 767px) {
  body.jw-app .jw-drawer__handle {
    display: flex;
  }

  body.jw-app .jw-drawer__head {
    padding: 0.35rem 1rem 0.75rem !important;
  }

  body.jw-app .jw-drawer__title {
    font-size: 0.92rem !important;
  }

  body.jw-app .jw-drawer__close {
    width: 36px !important;
    height: 36px !important;
  }

  body.jw-app .jw-drawer__body {
    padding: 0.75rem 0.9rem 1rem !important;
  }

  body.jw-app .jw-drawer__list {
    gap: 0.55rem !important;
  }

  body.jw-app .jw-drawer__item {
    grid-template-columns: 64px 1fr !important;
    gap: 0.65rem !important;
    padding: 0.55rem !important;
    border-radius: 14px !important;
  }

  body.jw-app .jw-drawer__thumb {
    width: 64px !important;
    height: 78px !important;
    border-radius: 10px !important;
  }

  body.jw-app .jw-drawer__name {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
  }

  body.jw-app .jw-drawer__price {
    font-size: 0.78rem !important;
  }

  body.jw-app .jw-drawer__foot {
    padding: 0.75rem 0.9rem calc(0.85rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.jw-app .jw-drawer__checkout {
    min-height: 46px !important;
  }

  body.jw-app .jw-drawer__total {
    margin-bottom: 0.55rem !important;
    font-size: 0.85rem !important;
  }
}

.jw-cart--compact .jw-cart__body {
  padding-top: 1rem !important;
  padding-bottom: 2.5rem !important;
}

.jw-cart--compact .jw-cart__head {
  margin-bottom: 0.85rem !important;
  align-items: flex-end;
}

.jw-cart--compact .jw-cart__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--jw-muted);
}

.jw-cart--compact .jw-cart__eyebrow a {
  color: inherit;
  text-decoration: none;
}

.jw-cart--compact .jw-cart__eyebrow a:hover {
  color: var(--jw-brand, var(--jw-primary));
}

.jw-cart--compact .jw-cart__heading {
  margin: 0 !important;
  font-size: clamp(1.25rem, 3.5vw, 1.65rem) !important;
  font-weight: 400;
}

.jw-cart--compact .jw-cart__count {
  font-size: 0.68rem !important;
}

.jw-cart--compact .jw-cart__layout {
  gap: 1rem !important;
}

.jw-cart--compact .jw-cart__cards {
  gap: 0.55rem !important;
}

.jw-cart--compact .jw-cart__card {
  grid-template-columns: 68px 1fr !important;
  gap: 0.7rem !important;
  padding: 0.65rem !important;
  border-radius: 14px !important;
}

.jw-cart--compact .jw-cart__card .jw-cart__thumb {
  width: 68px !important;
  height: 84px !important;
  border-radius: 10px !important;
}

.jw-cart--compact .jw-cart__name {
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 400;
}

.jw-cart--compact .jw-cart__price {
  margin: 0;
  font-size: 0.78rem;
  color: var(--jw-muted);
}

.jw-cart--compact .jw-cart__card-body {
  gap: 0.3rem !important;
}

.jw-cart--compact .jw-cart__line {
  font-size: 0.92rem;
  color: var(--jw-brand, var(--jw-primary));
  font-weight: 500;
}

.jw-cart--compact .jw-cart__qty button {
  width: 32px;
  height: 32px;
}

.jw-cart--compact .jw-cart__totals {
  padding: 1rem !important;
  border-radius: 14px !important;
  position: sticky;
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  top: auto;
  z-index: 5;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.06);
}

.jw-cart--compact .jw-cart__totals h2 {
  margin-bottom: 0.75rem !important;
  font-size: 0.72rem !important;
}

.jw-cart--compact .jw-cart__totals-row {
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
}

.jw-cart--compact .jw-cart__totals-row--total {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
}

.jw-cart--compact .jw-cart__checkout {
  margin-top: 0.85rem !important;
  min-height: 46px;
  border-radius: 999px;
  justify-content: center;
}

.jw-cart--compact .jw-cart__continue {
  margin-top: 0.55rem !important;
  font-size: 0.68rem !important;
}

.jw-cart--compact .jw-cart__empty {
  padding: 2rem 0.75rem !important;
}

@media (min-width: 1100px) {
  .jw-cart--compact .jw-cart__layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.35rem !important;
  }

  .jw-cart--compact .jw-cart__totals {
    position: sticky;
    top: 5.5rem;
    bottom: auto;
    box-shadow: none;
  }

  .jw-cart--compact .jw-cart__card {
    grid-template-columns: 80px 1fr !important;
    padding: 0.85rem !important;
  }

  .jw-cart--compact .jw-cart__card .jw-cart__thumb {
    width: 80px !important;
    height: 100px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.jw-app .jw-drawer,
  .jw-drawer__backdrop {
    transition-duration: 0.01ms !important;
  }
}

/* —— Product configurator: accent selected state —— */
.jw-cfg {
  display: grid;
  gap: 1.15rem;
}

.jw-cfg__group {
  display: grid;
  gap: 0.15rem;
}

.jw-cfg__title {
  color: var(--jw-muted) !important;
  letter-spacing: 0.1em !important;
}

.jw-cfg__range {
  background: color-mix(in srgb, var(--jw-accent, var(--jw-brand)) 12%, var(--jw-bg)) !important;
  color: var(--jw-accent, var(--jw-brand)) !important;
  border-radius: 999px !important;
  font-weight: 600;
}

.jw-cfg__options {
  gap: 0.55rem !important;
}

.jw-cfg__opt {
  border-radius: 12px !important;
  border-width: 1.5px !important;
  border-color: var(--jw-border) !important;
  background: var(--jw-surface, #fff) !important;
  color: var(--jw-heading) !important;
  box-shadow: none !important;
  min-height: 2.35rem;
}

.jw-cfg__opt:not(.is-active):hover {
  border-color: color-mix(in srgb, var(--jw-accent, var(--jw-brand)) 45%, var(--jw-border)) !important;
  background: color-mix(in srgb, var(--jw-accent, var(--jw-brand)) 6%, var(--jw-bg)) !important;
}

.jw-cfg__opt.is-active,
.jw-cfg__opt--active,
body.jw-app .jw-cfg__opt.is-active,
body.jw-app .jw-pdp .jw-cfg__opt.is-active,
.jw-pdp .jw-cfg__opt.is-active {
  border-color: var(--jw-accent, var(--jw-brand)) !important;
  background: var(--jw-accent, var(--jw-brand)) !important;
  background-color: var(--jw-accent, var(--jw-brand)) !important;
  color: var(--jw-on-primary, #fff) !important;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--jw-accent, var(--jw-brand)) 28%, transparent) !important;
}

.jw-cfg__opt.is-active .jw-cfg__delta,
.jw-cfg__opt.is-active .jw-cfg__qty,
.jw-cfg__opt.is-active .jw-cfg__qty-btn,
body.jw-app .jw-cfg__opt.is-active [class*="text-"],
body.jw-app .jw-pdp .jw-cfg__opt.is-active {
  color: var(--jw-on-primary, #fff) !important;
}

.jw-cfg__opt.is-active .jw-cfg__delta {
  opacity: 0.78;
}

.jw-cfg__opt:not(.is-active) .jw-cfg__delta {
  color: var(--jw-accent, var(--jw-brand)) !important;
}

.jw-cfg__check,
body.jw-app .jw-cfg__check,
.jw-pdp .jw-cfg__check {
  background: var(--jw-accent, var(--jw-brand)) !important;
  background-color: var(--jw-accent, var(--jw-brand)) !important;
  color: var(--jw-on-primary, #fff) !important;
  border: 2px solid var(--jw-surface, #fff) !important;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--jw-accent, var(--jw-brand)) 35%, transparent) !important;
  ring: none;
}

.jw-cfg__qty-btn {
  color: var(--jw-on-primary, #fff) !important;
  opacity: 0.9;
}

.jw-cfg__qty-btn:hover {
  opacity: 1;
}

/* Prevent gold-hex remaps from washing selected config chips */
body.jw-app .jw-cfg__opt.is-active[class*="bg-[#9C7E55]"],
body.jw-app .jw-pdp .jw-cfg__opt.is-active[class*="bg-[#9C7E55]"],
.jw-pdp .jw-cfg__opt.is-active[class*="bg-[#9C7E55]"],
body.jw-app .jw-cfg__check[class*="bg-[#9C7E55]"],
.jw-pdp .jw-cfg__check[class*="bg-[#9C7E55]"] {
  background: var(--jw-accent, var(--jw-brand)) !important;
  background-color: var(--jw-accent, var(--jw-brand)) !important;
  color: var(--jw-on-primary, #fff) !important;
}

body.jw-app .jw-cfg__opt.is-active[class*="border-[#9C7E55]"],
.jw-pdp .jw-cfg__opt.is-active[class*="border-[#9C7E55]"] {
  border-color: var(--jw-accent, var(--jw-brand)) !important;
}

/* —— Rectangular locale flags + review stars + dark UI fixes —— */
body.jw-app .lang-flag,
body.jw-app .jw-header__lang .lang-flag {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 0.875rem !important;
  width: 1.35rem !important;
  overflow: hidden !important;
  border-radius: 2px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) !important;
}

body.jw-app .lang-flag svg,
body.jw-app .jw-header__lang .lang-flag svg {
  display: block !important;
  height: 100% !important;
  width: 100% !important;
  max-height: none !important;
  transform: none !important;
}

html.dark body.jw-app .lang-flag,
html.dark body.jw-app .jw-header__lang .lang-flag {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

body.jw-app .jw-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--jw-muted);
  font-size: 0.78rem;
  line-height: 1;
}

body.jw-app .jw-rating__score {
  color: var(--jw-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

body.jw-app .jw-rating__count {
  color: var(--jw-muted);
}

body.jw-app .jw-rating--pdp {
  margin: 0.35rem 0 0.85rem;
  width: fit-content;
  border: 1px solid color-mix(in srgb, #f5b800 22%, var(--jw-border));
  border-radius: 999px;
  background: color-mix(in srgb, #f5b800 8%, var(--jw-surface));
  padding: 0.42rem 0.72rem;
  font-size: 0.86rem;
}

body.jw-app .jw-rating--card {
  margin-top: 0.32rem;
  margin-bottom: 0.5rem;
  min-height: 0.9rem;
  gap: 0.22rem;
  font-size: 0.72rem;
}

/* —— Product reviews (dark-mode safe) —— */
body.jw-app .jw-reviews {
  margin-top: 0.5rem;
  padding-top: 0.25rem;
  border-top: 0;
}

body.jw-app .jw-reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.15rem;
}

body.jw-app .jw-reviews__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--jw-heading, var(--jw-primary));
}

body.jw-app .jw-reviews__avg {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.86rem;
  color: var(--jw-muted);
}

body.jw-app .jw-reviews__avg strong {
  color: var(--jw-heading, var(--jw-primary));
  font-weight: 600;
}

body.jw-app .jw-reviews__list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

body.jw-app .jw-reviews__item {
  border: 1px solid var(--jw-border);
  border-radius: 14px;
  background: var(--jw-surface, var(--jw-bg));
  padding: 0.9rem 1rem;
}

body.jw-app .jw-reviews__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

body.jw-app .jw-reviews__author {
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--jw-heading, var(--jw-primary));
}

body.jw-app .jw-reviews__body,
body.jw-app .jw-reviews__empty {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--jw-muted);
}

body.jw-app .jw-reviews__empty {
  margin-bottom: 1.1rem;
}

body.jw-app .jw-reviews__thanks {
  margin: 0;
  border-radius: 12px;
  background: color-mix(in srgb, #10b981 14%, var(--jw-surface));
  color: color-mix(in srgb, #059669 70%, var(--jw-heading));
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
}

body.jw-app .jw-reviews__form {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--jw-border);
  border-radius: 14px;
  background: var(--jw-light, var(--jw-surface));
  padding: 1rem;
}

body.jw-app .jw-reviews__form-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--jw-heading, var(--jw-primary));
}

body.jw-app .jw-reviews__input {
  width: 100%;
  border: 1px solid var(--jw-border);
  border-radius: 10px;
  background: var(--jw-surface, var(--jw-bg)) !important;
  color: var(--jw-heading, var(--jw-primary)) !important;
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  outline: none;
}

body.jw-app .jw-reviews__input::placeholder {
  color: var(--jw-muted);
  opacity: 0.85;
}

body.jw-app .jw-reviews__input:focus {
  border-color: var(--jw-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--jw-brand) 16%, transparent);
}

body.jw-app .jw-reviews__textarea {
  resize: vertical;
  min-height: 5rem;
}

body.jw-app .jw-reviews__stars {
  display: flex;
  gap: 0.2rem;
}

body.jw-app .jw-reviews__stars button {
  border: 0;
  background: transparent;
  padding: 0.1rem;
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(245, 184, 0, 0.28) !important;
  cursor: pointer;
  transition: color 140ms ease, transform 140ms ease;
}

body.jw-app .jw-reviews__stars button.is-on {
  color: #f5b800 !important;
}

body.jw-app .jw-reviews__stars button:hover {
  transform: scale(1.08);
}

body.jw-app .jw-reviews__submit {
  justify-self: start;
  border: 0 !important;
  border-radius: 999px;
  background: var(--jw-brand) !important;
  background-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
  padding: 0.55rem 1.25rem;
  font-size: 0.86rem;
  font-weight: 550;
  cursor: pointer;
}

body.jw-app .jw-reviews__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

html.dark body.jw-app .jw-reviews__submit {
  background: var(--jw-brand) !important;
  background-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

/* —— PDP tabs: theme-token active state —— */
body.jw-app .jw-pdp__tab.is-active {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
  box-shadow: none !important;
  font-weight: 600 !important;
}

html.dark body.jw-app .jw-pdp__tablist {
  background: color-mix(in srgb, var(--jw-surface) 82%, #000) !important;
  border: 1px solid var(--jw-border);
}

html.dark body.jw-app .jw-pdp__tab {
  color: var(--jw-muted) !important;
  background: transparent !important;
}

html.dark body.jw-app .jw-pdp__tab.is-active {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
  box-shadow: none !important;
}

/* —— Auth tabs: always brand primary (never heading ink / white) —— */
body.jw-app .jw-auth__tabs button.is-active,
html.dark body.jw-app .jw-auth__tabs button.is-active {
  background: var(--jw-brand) !important;
  background-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
  border-color: var(--jw-brand) !important;
}

html.dark body.jw-app .jw-auth__tabs {
  background: color-mix(in srgb, var(--jw-surface) 88%, #000);
  border-color: var(--jw-border);
}

html.dark body.jw-app .jw-btn,
html.dark body.jw-app .jw-auth__submit,
html.dark body.jw-app .jw-pdp__buy,
html.dark body.jw-app .jw-pdp__add.jw-btn,
html.dark body.jw-app .jw-reviews__submit,
html.dark body.jw-app .jw-catalog-cats button.is-active,
html.dark body.jw-app .jw-catalog-chip.is-active,
html.dark body.jw-app .jw-catalog-catpill.is-active {
  background: var(--jw-brand) !important;
  background-color: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

html.dark body.jw-app .jw-btn--outline {
  background: transparent !important;
  color: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
}

html.dark body.jw-app .jw-btn--outline:hover {
  background: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

/* —— Blog category chips: readable in dark mode —— */
html.dark body.jw-app .filter-chip,
html.dark body.jw-app .filter-chip-inactive {
  background: var(--jw-surface) !important;
  border-color: var(--jw-border) !important;
  color: var(--jw-heading, var(--jw-body)) !important;
}

html.dark body.jw-app .filter-chip-active {
  background: var(--jw-brand) !important;
  border-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

html.dark body.jw-app .filter-chip-inactive:hover {
  background: var(--jw-light) !important;
  color: var(--jw-heading) !important;
}

body.jw-app .jw-journal-card__tag {
  background: color-mix(in srgb, var(--jw-surface) 92%, #fff) !important;
  color: var(--jw-heading, #111) !important;
  border: 1px solid color-mix(in srgb, var(--jw-border) 80%, transparent);
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

html.dark body.jw-app .jw-journal-card__tag {
  background: rgba(20, 20, 24, 0.92) !important;
  color: #f4f4f5 !important;
  border-color: rgba(255, 255, 255, 0.16);
}

/* —— Category carousel: thin gray outline hover, primary label —— */
body.jw-app .jw-cat {
  transition: none;
}

body.jw-app .jw-cat__img {
  position: relative;
  border: 1.5px solid transparent;
  transition: border-color 180ms var(--jw-ease);
  box-shadow: none;
}

body.jw-app .jw-cat__img::after {
  display: none;
}

body.jw-app .jw-cat__label {
  color: var(--jw-primary) !important;
  transition: none;
}

body.jw-app .jw-cat:hover {
  transform: none;
}

body.jw-app .jw-cat:hover .jw-cat__img {
  transform: none;
  border-color: #d4d4d8;
  box-shadow: none;
}

body.jw-app .jw-cat:hover .jw-cat__img img {
  transform: none !important;
}

body.jw-app .jw-cat:hover .jw-cat__label {
  color: var(--jw-primary) !important;
  transform: none;
}

html.dark body.jw-app .jw-cat:hover .jw-cat__img {
  border-color: #3f3f46;
}

body.jw-app .jw-cats--chips .jw-cat:hover .jw-cat__chip {
  border-color: #d4d4d8;
  background: transparent;
  color: var(--jw-primary);
  box-shadow: none;
  transform: none;
}

html.dark body.jw-app .jw-cats--chips .jw-cat:hover .jw-cat__chip {
  border-color: #3f3f46;
}

body.jw-app .jw-cats--cards .jw-cat:hover .jw-cat__card-cap {
  background: linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.72));
}

/* —— Product card hover: keep top border visible when lifting —— */
body.jw-app .jw-pc {
  overflow: visible !important;
  z-index: 0;
}

body.jw-app .jw-pc:hover {
  z-index: 2;
}

body.jw-app .jw-product-grid,
body.jw-app .jw-product-grid.jw-grid,
body.jw-app .jw-grid,
body.jw-app .jw-catalog-main {
  overflow: visible !important;
  padding-top: 6px;
  margin-top: -2px;
}

/* Horizontal rails: keep overflow-x scroll; padding so translateY doesn't clip */
body.jw-app .jw-scroll:has(.jw-pc),
body.jw-app .jw-rail .jw-scroll:has(.jw-pc),
body.jw-app .jw-related__rail.jw-scroll {
  overflow-x: auto !important;
  overflow-y: visible !important;
  padding-top: 8px !important;
  margin-top: -2px;
}

body.jw-app .jw-pc__media {
  overflow: hidden;
  outline: none;
}

/* —— Cart / checkout configuration chips —— */
body.jw-app .jw-cart-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin: 0.28rem 0 0.42rem;
  padding: 0;
  list-style: none;
}

body.jw-app .jw-cart-opts--compact {
  margin: 0.22rem 0 0.35rem;
  gap: 0.22rem;
}

body.jw-app .jw-cart-opts__item {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  max-width: 100%;
}

body.jw-app .jw-cart-opts__label {
  color: var(--jw-muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.jw-app .jw-cart-opts__chip {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--jw-accent) 22%, var(--jw-border));
  border-radius: 999px;
  background: color-mix(in srgb, var(--jw-accent) 8%, var(--jw-surface));
  color: var(--jw-primary);
  font-size: 0.68rem;
  line-height: 1.2;
  padding: 0.18rem 0.48rem;
}

body.jw-app .jw-cart-opts--compact .jw-cart-opts__chip {
  font-size: 0.64rem;
  padding: 0.14rem 0.42rem;
}

body.jw-app .jw-co-summary__item-main {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

body.jw-app .jw-co-summary__item-title {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.jw-app .jw-co-summary__items .jw-cart-opts {
  margin: 0;
}

body.jw-app .jw-co-summary__items .jw-cart-opts__chip {
  font-size: 0.6rem;
  padding: 0.12rem 0.38rem;
}

/* Header / tabbar count bubbles → theme brand (incl. dark mode) */
body.jw-app .jw-action__bubble,
body.jw-app .jw-tabbar__badge,
html.dark body.jw-app .jw-action__bubble,
html.dark body.jw-app .jw-tabbar__badge {
  background: var(--jw-brand) !important;
  background-color: var(--jw-brand) !important;
  color: var(--jw-on-primary) !important;
}

/* Product grid: configurable desktop columns */
.jw-product-grid[data-cols="2"],
.jw-product-grid.jw-grid[data-cols="2"],
.jw-grid[data-cols="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .jw-product-grid[data-cols="3"],
  .jw-product-grid.jw-grid[data-cols="3"],
  .jw-grid[data-cols="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .jw-product-grid[data-cols="4"],
  .jw-product-grid.jw-grid[data-cols="4"],
  .jw-grid[data-cols="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .jw-product-grid[data-cols="5"],
  .jw-product-grid.jw-grid[data-cols="5"],
  .jw-grid[data-cols="5"] {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .jw-product-grid[data-cols="6"],
  .jw-product-grid.jw-grid[data-cols="6"],
  .jw-grid[data-cols="6"] {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* Product grid / cards: no fill in light or dark — blend with page background */
.jw-section--products,
.jw-product-grid,
.jw-pc,
.jw-pc__body,
.jw-pc__media,
.jw-pc__placeholder,
body.jw-app .jw-section--products,
body.jw-app .jw-product-grid,
body.jw-app .jw-product-grid.jw-grid,
body.jw-app .jw-pc,
body.jw-app .jw-pc__body,
body.jw-app .jw-pc__media,
body.jw-app .jw-pc__placeholder,
html.dark .jw-section--products,
html.dark .jw-product-grid,
html.dark .jw-pc,
html.dark .jw-pc__body,
html.dark .jw-pc__media,
html.dark .jw-pc__placeholder,
html.dark body.jw-app .jw-section--products,
html.dark body.jw-app .jw-product-grid,
html.dark body.jw-app .jw-pc,
html.dark body.jw-app .jw-pc__body,
html.dark body.jw-app .jw-pc__media,
html.dark body.jw-app .jw-pc__placeholder,
html.dark body.jw-app .jw-product-grid .jw-pc,
html.dark body.jw-app .jw-product-grid .jw-pc__body,
html.dark body.jw-app .jw-product-grid .jw-pc__media,
html.dark body.jw-app .jw-catalog .jw-pc,
html.dark body.jw-app .jw-catalog .jw-pc__body,
html.dark body.jw-app .jw-catalog .jw-pc__media {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}
