.shop-masthead__meta {
  color: var(--color-signal) !important;
}

/* Shop/product navigation lives on a dark surface. Keep hover legible, but
   leave the current destination visually inert. */
.site-header--shop .site-nav a:not([aria-current="page"]):hover {
  color: #f8f7f3;
  text-decoration: underline;
  text-decoration-color: var(--color-signal);
  text-decoration-thickness: 2px;
}

.site-header--shop .site-nav a[aria-current="page"] {
  pointer-events: none;
  cursor: default;
}

/* Shop mobile navigation stays muted gray whether closed or open. */
.site-header--shop .site-header__identity,
.site-header--shop .mobile-cart-link,
.site-header--shop .mobile-menu-toggle,
.site-header--shop .mobile-menu-toggle[aria-expanded="true"],
.site-header--shop .mobile-nav-panel a,
.site-header--shop .mobile-nav-panel a span,
.site-header--shop .mobile-nav-list a[aria-current="page"] {
  color: var(--color-muted) !important;
}

/* SOLD OUT has one fixed anchor at every viewport size. The overlay's duplicate
   status is hidden so the label never shifts when hover details appear. */
.shop-card--sold-out .shop-card__media::after {
  content: "SOLD OUT";
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  margin: 0;
  color: var(--color-signal);
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: none;
}

.shop-card--sold-out .shop-card__overlay .shop-card__status {
  display: none;
}

/* Keep hover title/price/caption above the persistent SOLD OUT label rather
   than allowing the final line of product copy to occupy the same baseline. */
@media (min-width: 48.001rem) {
  .shop-card--sold-out .shop-card__overlay {
    padding-bottom: calc(clamp(1rem, 2vw, 1.75rem) + 2.15rem);
  }
}

@media (max-width: 48rem) {
  .shop-card--sold-out .shop-card__media::after {
    display: block;
    left: 1rem;
    bottom: 1rem;
  }
}