/* Caresha Please - Local Copy (1:1 with original) */
/* Coolvetica – https://www.dafont.com/coolvetica.font (Typodermic). Add fonts/CoolveticaRg.otf for web use. */
@font-face {
  font-family: "Coolvetica";
  src: url("../fonts/CoolveticaRg.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Bebas — Dharma Type, 100% Free: https://www.dafont.com/bebas.font — add fonts/Bebas-Regular.ttf */
@font-face {
  font-family: "Bebas";
  src: url("../fonts/Bebas-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --heading-scale: 1.15;
}

/* Display headings site-wide — Bebas (https://www.dafont.com/bebas.font) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Coolvetica", "Coolvetica Rg", sans-serif;
  background: #171717;
  color: #fff;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header - dark bg, white text + CP logo centered */
header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  background: #171717;
  color: #fff;
  z-index: 100;
  max-width: 2200px;
  margin: 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    backdrop-filter 0.35s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Scrolled header: full bar = tinted material; blur ramps in softly from ~mid-panel downward */
header.header--scrolled {
  /* Light veil so imagery under the top stays recognizable */
  background: linear-gradient(
    to bottom,
    rgba(23, 23, 23, 0.42) 0%,
    rgba(23, 23, 23, 0.3) 40%,
    rgba(23, 23, 23, 0.16) 78%,
    rgba(23, 23, 23, 0.05) 92%,
    rgba(23, 23, 23, 0) 100%
  );
  /* Whole panel: dim / desaturate pass (no blur here) */
  -webkit-backdrop-filter: brightness(0.88) saturate(0.82);
  backdrop-filter: brightness(0.88) saturate(0.82);
  border-bottom: none;
  box-shadow: none;
}

/*
 * Blur only in the lower ~half of the header (no full-height mask — WebKit often fails to show
 * backdrop-blur when the layer is fully transparent). Feather the top of this band so it eases in mid-panel.
 */
header.header--scrolled::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  /* Opaque-enough backing so iOS/Safari actually composites backdrop-filter */
  background: rgba(23, 23, 23, 0.04);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 22%, #000 48%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 22%, #000 48%, #000 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  header {
    transition: none;
  }
  header.header--scrolled::before {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* Same as system “reduce motion”, but chosen from Sections → Accessibility */
html.reduce-motion-user header {
  transition: none;
}
html.reduce-motion-user header.header--scrolled::before {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Keep nav chrome above the material tint */
header .header-leading-slot,
header .header-logo,
header .header-right,
header .header-icon-group,
header .notification-dropdown-wrap {
  position: relative;
  z-index: 1;
}

header.header--scrolled .notification-btn,
header.header--scrolled .header-heart-link {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

header.header--scrolled .header-logo .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 10px rgba(0, 0, 0, 0.45));
  display: block;
}

header a { color: #fff; }
header a:hover { color: #c16452; }

/* Hero → content auto-scroll: keep headings clear of sticky header */
#favorites-catalog,
#shop-main-section,
#vault-main-section {
  scroll-margin-top: 5.75rem;
}
header .header-leading-slot { justify-self: start; }
header .header-logo { justify-self: center; }
header .header-right { justify-self: end; }
.logo { display: flex; align-items: center; }
.logo-img {
  height: 34px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
nav { display: flex; gap: 2rem; align-items: center; }
nav a { text-transform: uppercase; font-size: 16px; letter-spacing: 0.08em; }
.header-right {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  min-width: 0;
  justify-content: flex-end;
}
/* Text links must not shrink under the grid cell or badges will cover copy */
.header-right > a {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Tight cluster: notification bell + liked-products heart */
.header-icon-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.125rem;
  flex-shrink: 0;
}
.header-icon-group .notification-dropdown-wrap {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

/* Liked products — header (shows when you’ve hearted items) */
button.header-heart-link {
  font: inherit;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
.header-heart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -0.25rem 0;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-sizing: border-box;
  transition: color 0.2s, background 0.2s, transform 0.2s, border-color 0.2s;
}
.header-heart-link--tray-open {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}
.header-heart-link--active.header-heart-link--tray-open {
  color: #ff6b7a;
}
.header-heart-link:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}
.header-heart-link--active {
  color: #ed4956;
}
.header-heart-link--active:hover {
  color: #ff6b7a;
}
.header-heart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.header-heart-svg {
  position: absolute;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s;
}
.header-heart-svg--filled {
  opacity: 0;
  color: #ed4956;
}
.header-heart-link--active .header-heart-svg--filled {
  opacity: 1;
}
.header-heart-link--active .header-heart-svg--outline {
  opacity: 0;
}
.header-heart-link:not(.header-heart-link--active) .header-heart-svg--outline {
  opacity: 1;
}
.header-heart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ed4956;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}

/* Liked products — dropdown tray from header heart */
.likes-tray {
  position: fixed;
  inset: 0;
  z-index: 280;
  pointer-events: none;
  visibility: hidden;
}
.likes-tray.is-open {
  visibility: visible;
  pointer-events: auto;
}
.likes-tray-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.2s;
}
.likes-tray.is-open .likes-tray-backdrop {
  opacity: 1;
}
.likes-tray-panel {
  position: fixed;
  z-index: 281;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: min(480px, calc(100vh - 1.25rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
  max-width: min(380px, calc(100vw - 1rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  box-sizing: border-box;
  padding: 0.5rem 0.55rem 0.65rem;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.likes-tray.is-open .likes-tray-panel {
  transform: translateY(0);
  opacity: 1;
}
.likes-tray-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.likes-tray-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  min-width: 0;
  overflow-wrap: anywhere;
}
.likes-tray-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-sizing: border-box;
}
.likes-tray-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #c16452;
}
.likes-tray-hint {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.likes-tray-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  background: #1a1a1a;
}
.likes-tray-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, auto);
  gap: 0.65rem;
  align-items: start;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 100%;
  box-sizing: border-box;
}
.likes-tray-row-thumb-wrap {
  align-self: start;
}
.likes-tray-row-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: #2a2a2a;
}
.likes-tray-row-thumb--empty {
  background: #333;
}
.likes-tray-row-body {
  min-width: 0;
}
.likes-tray-row-name {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.likes-tray-row-name:hover {
  color: #c16452;
  text-decoration: underline;
}
.likes-tray-row-price {
  font-size: 0.8rem;
  color: #aaa;
}
.likes-tray-row-sale {
  color: #e74c3c;
  font-weight: 600;
}
.likes-tray-row-compare {
  text-decoration: line-through;
  opacity: 0.85;
}
.likes-tray-row-missing {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: #888;
}
.likes-tray-row .product-card-size-wrap,
.likes-tray-row .likes-tray-size-wrap {
  margin-top: 0.4rem;
  padding: 0;
  width: 100%;
}
.likes-tray-row .product-card-size-label {
  font-size: 0.72rem;
}
.likes-tray-size,
.likes-tray-row .likes-tray-size {
  width: 100%;
  max-width: 140px;
  margin-top: 0.25rem;
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font: inherit;
  font-size: 0.8rem;
  background: #2a2a2a;
  color: #f5f5f5;
}
.likes-tray-row-cta {
  align-self: center;
  min-width: 0;
  max-width: 100%;
  padding: 0.45rem 0.5rem;
  border: none;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
}
.likes-tray-row-cta--add {
  background: #fff;
  color: #171717;
}
.likes-tray-row-cta--add:hover {
  background: #e8e8e8;
}
.likes-tray-row-cta--checkout {
  background: linear-gradient(135deg, #c16452 0%, #a05040 100%);
  color: #fff;
}
.likes-tray-row-cta--checkout:hover {
  filter: brightness(1.08);
}
.likes-tray-empty {
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}
.likes-tray-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #161616;
  border-radius: 0 0 10px 10px;
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.likes-tray-footer-link {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
}
.likes-tray-footer-link:hover {
  color: #c16452;
}
.likes-tray-footer-cart {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}
.likes-tray-footer-cart:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width: 480px) {
  .likes-tray-panel {
    max-height: min(70vh, calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 5.5rem));
    max-width: calc(100vw - 1rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
  }
  .likes-tray-row-cta {
    font-size: 0.62rem;
    padding: 0.4rem 0.45rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
}

/* Nav sidebar – slide-over (close via overlay / ×; no header hamburger) */
.nav-sidebar {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.25s;
}
.nav-sidebar.is-open {
  visibility: visible;
  pointer-events: auto;
}
.nav-sidebar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-sidebar.is-open .nav-sidebar-overlay { opacity: 1; }
.nav-sidebar-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: #171717;
  border-left: 1px solid #333;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}
.nav-sidebar.is-open .nav-sidebar-panel { transform: translateX(0); }
.nav-sidebar-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  margin: -0.5rem -0.5rem 0 0;
}
.nav-sidebar-close:hover { color: #c16452; background: rgba(255,255,255,0.08); }
.nav-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-sidebar-nav a,
.nav-sidebar-actions a {
  display: block;
  padding: 0.75rem 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #2a2a2a;
}
.nav-sidebar-nav a:hover,
.nav-sidebar-actions a:hover { color: #c16452; }
/* Shop shortcuts: Resha Roulette + bundles (under All Products) */
.nav-sidebar-shop-quick {
  margin: 0.75rem 0 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #2a2a2a;
}
.nav-sidebar-shop-quick-label {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.nav-sidebar-shop-quick-btn {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.65rem 0.85rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-sizing: border-box;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-sidebar-shop-quick-btn:last-child {
  margin-bottom: 0;
}
.nav-sidebar-shop-quick-btn:hover {
  color: #c16452;
  background: rgba(193, 100, 82, 0.12);
  border-color: rgba(193, 100, 82, 0.35);
  text-decoration: none;
}
.nav-sidebar-actions a[aria-current="page"] {
  color: #c16452;
  font-weight: 600;
}
.nav-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.nav-sidebar .search-input {
  width: 100%;
  margin-bottom: 0.5rem;
}

/* Dock "Sections" — panel slides in from the LEFT (nav menu is from the right) */
.sections-sidebar {
  position: fixed;
  inset: 0;
  z-index: 210;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.25s;
}
.sections-sidebar.is-open {
  visibility: visible;
  pointer-events: auto;
}
.sections-sidebar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s;
}
.sections-sidebar.is-open .sections-sidebar-overlay {
  opacity: 1;
}
.sections-sidebar-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(300px, 88vw);
  max-width: 100%;
  height: 100%;
  background: #171717;
  border-right: 1px solid #333;
  padding: 1.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
}
.sections-sidebar.is-open .sections-sidebar-panel {
  transform: translateX(0);
}
.sections-sidebar-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: -0.35rem -0.35rem 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}
.sections-sidebar-close:hover {
  color: #c16452;
  background: rgba(255, 255, 255, 0.08);
}
.sections-sidebar-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.sections-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sections-sidebar-heading {
  margin: 0.85rem 0 0.25rem;
  padding: 0 0.75rem;
  font-size: calc(0.68rem * var(--heading-scale));
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.sections-sidebar-heading:first-child {
  margin-top: 0;
}
.sections-sidebar-link--filter {
  font-size: 0.88rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(193, 100, 82, 0.35);
  margin-left: 0.25rem;
}
.sections-sidebar-link--filter:hover {
  border-left-color: rgba(193, 100, 82, 0.65);
}
.sections-sidebar-link {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sections-sidebar-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.sections-sidebar-link.is-active {
  background: rgba(193, 100, 82, 0.18);
  border-color: rgba(193, 100, 82, 0.45);
  color: #e8b4a8;
  font-weight: 600;
}

/* Sections panel: Accessibility (reduce motion toggle) */
.sections-sidebar-a11y {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sections-sidebar-a11y-hint {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}
.sections-sidebar-reduce-motion {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s;
}
.sections-sidebar-reduce-motion:hover {
  background: rgba(255, 255, 255, 0.06);
}
.sections-sidebar-reduce-motion input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.sections-sidebar-reduce-motion-track {
  flex-shrink: 0;
  width: 2.5rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.sections-sidebar-reduce-motion-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(1.35rem - 6px);
  height: calc(1.35rem - 6px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}
.sections-sidebar-reduce-motion input:focus-visible + .sections-sidebar-reduce-motion-track {
  outline: 2px solid #c16452;
  outline-offset: 2px;
}
.sections-sidebar-reduce-motion input:checked + .sections-sidebar-reduce-motion-track {
  background: rgba(193, 100, 82, 0.45);
  border-color: rgba(193, 100, 82, 0.65);
}
.sections-sidebar-reduce-motion input:checked + .sections-sidebar-reduce-motion-track .sections-sidebar-reduce-motion-thumb {
  transform: translateX(1.15rem);
}

html.reduce-motion-user .sections-sidebar-reduce-motion-track,
html.reduce-motion-user .sections-sidebar-reduce-motion-thumb {
  transition: none;
}

.sections-sidebar-soft-theme-toggle {
  margin-top: 0.85rem;
}

/* In-page jump targets: clear fixed dock / header */
main [id^='section-'],
main #shop-main-section,
main #tour-dates,
main #vault-main-section,
main #favorites-catalog,
main #section-favorites-hero,
main #comingSoonTitle {
  scroll-margin-top: 5.5rem;
}

.notification-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-sizing: border-box;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.notification-btn:hover {
  color: #c16452;
  background: rgba(255, 255, 255, 0.08);
}
.notification-icon { flex-shrink: 0; }
.notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: #e74c3c;
  border-radius: 999px;
  border: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.notification-dropdown-wrap {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.notification-panel[hidden] {
  display: none !important;
}
.notification-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: auto;
  width: min(
    22rem,
    calc(100vw - 0.75rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  max-width: calc(100vw - 0.75rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.55rem 0.65rem;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  z-index: 10050;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-wrap: anywhere;
  text-align: left;
  max-height: min(70vh, calc(100vh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
}
@supports (height: 100dvh) {
  .notification-panel {
    max-height: min(70dvh, calc(100dvh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
  }
}
.notification-panel-header {
  flex-shrink: 0;
  padding: clamp(0.5rem, 0.65rem + 0.5vw, 0.75rem) clamp(0.65rem, 0.75rem + 1vw, 1rem);
  font-size: clamp(0.62rem, 0.65rem + 0.35vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 0 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.notification-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-height: 0;
  background: #1e1e1e;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.notification-panel-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.notification-panel-item:last-child {
  border-bottom: none;
}
.notification-panel-link {
  display: block;
  max-width: 100%;
  padding: clamp(0.6rem, 0.7rem + 0.6vw, 0.85rem) clamp(0.65rem, 0.75rem + 1vw, 1rem);
  color: inherit;
  text-decoration: none;
  transition: background 0.15s;
  box-sizing: border-box;
}
.notification-panel-link:hover {
  background: rgba(255, 255, 255, 0.06);
}
.notification-panel-title {
  display: block;
  max-width: 100%;
  font-weight: 700;
  font-size: clamp(0.78rem, 0.8rem + 0.45vw, 0.9rem);
  margin-bottom: 0.2rem;
  color: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}
.notification-panel-body {
  display: block;
  max-width: 100%;
  font-size: clamp(0.7rem, 0.72rem + 0.35vw, 0.8rem);
  line-height: 1.35;
  color: #9a9a9a;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 480px) {
  .notification-panel {
    width: min(
      20rem,
      calc(100vw - 0.5rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
    );
    max-width: calc(100vw - 0.5rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    border-radius: 14px;
    max-height: min(65vh, calc(100vh - 5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
  }
  .notification-panel-header {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    padding: 0.5rem 0.7rem;
  }
  .notification-panel-link {
    padding: 0.55rem 0.7rem;
  }
  .notification-panel-title {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
  }
  .notification-panel-body {
    font-size: 0.7rem;
    line-height: 1.32;
  }
}
@media (max-width: 360px) {
  .notification-panel {
    width: calc(100vw - 0.45rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    max-width: none;
  }
  .notification-panel-header {
    font-size: 0.58rem;
    padding: 0.45rem 0.6rem;
  }
  .notification-panel-link {
    padding: 0.5rem 0.6rem;
  }
  .notification-panel-title {
    font-size: 0.76rem;
  }
  .notification-panel-body {
    font-size: 0.66rem;
  }
}
.notification-btn[aria-expanded="true"] {
  color: #c16452;
  background: rgba(255, 255, 255, 0.08);
}
.search-input {
  background: #2a2a2a;
  border: 1px solid #515151;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  width: 180px;
  font-size: 16px;
}

/* Hero video: fill hero width; portrait clips top/bottom (cover). Mute stays above. */
.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #000;
  overflow: hidden;
}
.hero-section:has(> .hero-video) {
  min-height: min(85vh, 1200px);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
}
.hero-video.hero-video-ambient {
  z-index: 0;
  transform: scale(1.12);
  filter: blur(22px) saturate(1.04) brightness(0.7);
  opacity: 0.66;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-mute-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.hero-mute-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hero-mute-icon {
  display: block;
  width: 24px;
  height: 24px;
}
.hero-mute-icon[hidden] {
  display: none;
}
.btn {
  display: inline-block;
  background: #0a0a0a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}
.btn:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-vault {
  font-family: "Bebas", sans-serif;
  letter-spacing: 0.04em;
}

/* Sections - match original (50px, 80px, 110px) */
section {
  padding: 80px 2rem;
  max-width: 2200px;
  margin: 0 auto;
}
section.hero-section { padding: 0; }

/* Home: CPTV Times Square — full-viewport backdrop behind everything below hero */
body.page-home {
  background: #000;
}
body.page-home .banner {
  position: relative;
  z-index: 101;
}
.home-below-hero-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-below-hero-backdrop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 20vh, 220px);
  z-index: 1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(26px) saturate(1.05);
  backdrop-filter: blur(26px) saturate(1.05);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.24) 45%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.home-below-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}
.page-home-main {
  position: relative;
  z-index: 1;
  background: transparent;
}
.page-home-main > .hero-section {
  position: relative;
  z-index: 2;
  isolation: isolate;
}
/* Small blur at bottom of home hero (softens seam to next section) */
.page-home-main > .hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(140px, 24vh);
  z-index: 1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(28px) saturate(1.06);
  backdrop-filter: blur(28px) saturate(1.06);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.28) 28%,
    rgba(0, 0, 0, 0.82) 68%,
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.28) 28%,
    rgba(0, 0, 0, 0.82) 68%,
    #000 100%
  );
}
@media (min-width: 992px) {
  /* Keep mobile ambiance, but remove oversized blur treatment on desktop. */
  body.page-home .home-below-hero-backdrop,
  body.page-home .home-below-hero-backdrop::after,
  body.page-home .page-home-main > .hero-section::after {
    display: none;
  }
}
.page-home-main > section:not(.hero-section) {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(23, 23, 23, 0.62) 0%,
    rgba(23, 23, 23, 0.8) 32%,
    rgba(23, 23, 23, 0.9) 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* Tea + Aquarius: hero-adjacent — heavy dim like .hero-section (#000) over CPTV */
.page-home-main > #section-home-tea,
.page-home-main > #section-home-aquarius {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.92) 38%,
    rgba(0, 0, 0, 0.97) 100%
  );
  backdrop-filter: blur(1px) saturate(1.05);
  -webkit-backdrop-filter: blur(1px) saturate(1.05);
}
.page-home-main > #section-home-tea > .section-title,
.page-home-main > #section-home-aquarius .section-title {
  color: rgba(255, 255, 255, 1);
}
/* Hero → tea: less air above “Get Into Some Tea!” than generic section (80px) */
#section-home-tea {
  padding-top: clamp(0.5rem, 1.75vw, 1.25rem);
}
body.page-home footer {
  position: relative;
  z-index: 1;
  background: rgba(23, 23, 23, 0.94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Shop landing: hero fills viewport below banner/header so catalog stays off-screen until 7s scroll */
body.page-shop main > .hero-section {
  min-height: calc(100svh - 6.5rem);
  min-height: calc(100dvh - 6.5rem);
  box-sizing: border-box;
}
body.page-home #section-home-hero .hero-video:not(.hero-video-ambient) {
  z-index: 1;
  object-fit: cover;
  object-position: center;
}
body.page-shop #section-shop-hero .hero-video:not(.hero-video-ambient) {
  z-index: 1;
  object-fit: contain;
  object-position: center top;
}

.section-title {
  text-align: center;
  font-size: clamp(calc(2.125rem * var(--heading-scale)), calc(7.5vw * var(--heading-scale)), calc(3.75rem * var(--heading-scale)));
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

/* Shop page title (letter-wide spans retired — natural Bebas) */
.shop-title-o {
  display: inline;
  transform: none;
  transform-origin: center center;
}

/* Sizes for Shop, Latest Releases, home tea, Vault, Tour, Discography (font: h1–h6 → Bebas) */
.shop-page-title,
.music-latest-title,
.stretch-pro-title {
  font-size: clamp(calc(2.125rem * var(--heading-scale)), calc(7.5vw * var(--heading-scale)), calc(3.75rem * var(--heading-scale)));
}
.shop-page-title {
  font-size: clamp(calc(2.375rem * var(--heading-scale)), calc(8.5vw * var(--heading-scale)), calc(4.25rem * var(--heading-scale)));
  margin-bottom: 2rem;
  white-space: nowrap;
}
.shop-page-intro,
.home-section-intro {
  text-align: center;
  max-width: 28rem;
  padding: 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #c4b5fd;
}
.shop-page-intro {
  margin: -0.5rem auto 1.25rem;
}
.home-section-intro {
  margin: 0 auto 1.25rem;
}
#section-home-tea .home-section-intro,
#section-home-aquarius .home-section-intro {
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
}
#section-home-tea .home-section-intro {
  font-size: clamp(1.2rem, 2.35vw, 1.5rem);
  line-height: 1.5;
  max-width: 34rem;
}
#section-home-aquarius .home-section-intro {
  font-size: 1.125rem;
}
.shop-page-intro strong,
.home-section-intro strong {
  color: #8b5cf6;
  font-weight: 700;
}

#section-home-tea .home-section-intro strong,
#section-home-aquarius .home-section-intro strong {
  color: rgba(181, 33, 33, 1);
}

/* Home: Aquarius SZN — copy left, Polaroid product shot right */
#section-home-aquarius {
  scroll-margin-top: 5.75rem;
}
.home-aquarius-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}
.home-aquarius-copy {
  width: 100%;
  min-width: 0;
  text-align: center;
}
.home-aquarius-copy .section-title {
  margin-bottom: 0.75rem;
}
.home-aquarius-intro {
  margin-bottom: 1.25rem;
}
.home-aquarius-intro em {
  font-style: italic;
  color: inherit;
}
.home-aquarius-cta-wrap {
  margin: 0;
}
.home-aquarius-media {
  flex-shrink: 0;
  width: 100%;
  max-width: min(320px, 88vw);
  display: flex;
  justify-content: center;
}
.home-aquarius-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
@media (min-width: 768px) {
  .home-aquarius-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
  /* Let headline + body use all horizontal space left of the Polaroid */
  .home-aquarius-copy {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    text-align: left;
  }
  .home-aquarius-intro {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  #section-home-aquarius .home-section-intro.home-aquarius-intro {
    max-width: none;
    width: 100%;
  }
  .home-aquarius-cta-wrap {
    text-align: left;
  }
  .home-aquarius-media {
    flex: 0 0 auto;
    width: auto;
    max-width: min(340px, 36vw);
  }
}

/* Home: Red Cup Typa NITE — cup art as left background; copy left; tall buy card right (wide screens) */
#section-home-red-cup {
  scroll-margin-top: 5.75rem;
  position: relative;
  overflow: hidden;
  --home-red-cup-bg: url(../assets/products/red-cup-typa-nite/red-cup-typa-nite-primary.png);
}
#section-home-red-cup::before {
  content: '';
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(100%, clamp(22rem, 76vw, 56rem));
  pointer-events: none;
  background-image: var(--home-red-cup-bg);
  background-repeat: no-repeat;
  /* cover + centered-on-cups framing so printed cup text stays visible */
  background-size: cover;
  background-position: 32% 44%;
  transform: scale(1.03);
  transform-origin: 26% center;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 58%, transparent 94%);
  mask-image: linear-gradient(to right, #000 0%, #000 58%, transparent 94%);
}
/* Vertical padding on inner so ::before can span full section (avoids dark strips above/below) */
.home-red-cup-section {
  padding: 0;
}
.home-red-cup-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 1.75rem)
    clamp(2rem, 5vw, 3.25rem);
  box-sizing: border-box;
}
.home-red-cup-product {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
  max-width: min(440px, 100%);
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
}
@media (max-width: 899px) {
  .home-red-cup-product {
    max-width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
}
.home-red-cup-lead {
  order: -1;
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
.home-red-cup-lead .section-title {
  margin-bottom: clamp(0.65rem, 2vw, 1rem);
  font-weight: 700;
}
/* Legible display headline (long all-caps line) — slightly smaller than global stretch-pro */
#section-home-red-cup .home-red-cup-lead .stretch-pro-title {
  line-height: 1.14;
  letter-spacing: 0.045em;
  font-size: clamp(1.875rem, 5.5vw, 2.95rem);
  color: #faf5ff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 0 28px rgba(0, 0, 0, 0.35);
}
#section-home-red-cup .home-red-cup-intro {
  box-sizing: border-box;
  margin: 0 0 1rem;
  max-width: none;
  width: 100%;
  text-align: inherit;
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  line-height: 1.68;
  color: rgba(245, 240, 255, 0.94);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
#section-home-red-cup .home-red-cup-intro strong {
  color: #e9d5ff;
  font-weight: 700;
}
.home-red-cup-buy {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#section-home-red-cup .home-red-cup-buy {
  align-items: stretch;
  text-align: left;
  max-width: min(380px, 100%);
  margin-left: auto;
  margin-right: auto;
  gap: 0;
}
#section-home-red-cup .home-red-cup-actions {
  align-items: stretch;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.home-red-cup-intro {
  margin-bottom: 1rem;
}
.home-red-cup-price-line {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: #fff;
}
.home-red-cup-price-value {
  font-weight: 700;
  color: #e5e5e5;
}
.home-red-cup-size-wrap {
  margin: 0 auto 1.25rem;
  width: 100%;
  max-width: min(20rem, 100%);
  box-sizing: border-box;
  text-align: center;
}
.home-red-cup-buy .home-red-cup-size-wrap {
  text-align: center;
}
/* Pack control: dark UI on home (product-detail-size defaults to light paper style) */
.home-red-cup-buy .product-detail-size-label {
  gap: 0.45rem;
  align-items: center;
}
.home-red-cup-buy .product-detail-size-label-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.home-red-cup-buy .product-detail-size,
.home-red-cup-buy .home-red-cup-pack-select {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.3;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(12, 12, 12, 0.55);
  color: #f5f5f5;
}
.home-red-cup-buy .product-detail-size:focus,
.home-red-cup-buy .home-red-cup-pack-select:focus {
  outline: 2px solid #c16452;
  outline-offset: 2px;
}
.home-red-cup-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: min(20rem, 100%);
  margin-left: auto;
  margin-right: auto;
}
/* Primary CTA: not the product-card footer strip (flat bottom radius, top border) */
.home-red-cup-actions .product-card-add-cart.product-detail-add-cart-btn {
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 8px;
  border-top: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}
.home-red-cup-actions .product-card-add-cart.product-detail-add-cart-btn:hover {
  background: #5b21b6;
  color: #fafafa;
}
.home-red-cup-detail-link {
  font-size: 0.9rem;
  color: #c4b5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-red-cup-detail-link:hover {
  color: #ddd6fe;
}

/* Home red cup: pack choice after Add to cart (native dialog) */
.cp-pack-dialog {
  padding: 0;
  border: none;
  border-radius: 14px;
  max-width: min(22rem, 92vw);
  background: #121212;
  color: #fafafa;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
}
.cp-pack-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}
.cp-pack-dialog-form {
  margin: 0;
  padding: 1.35rem 1.25rem 1.2rem;
  box-sizing: border-box;
}
.cp-pack-dialog-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cp-pack-dialog-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cp-pack-dialog-option {
  width: 100%;
  margin: 0;
  text-align: center;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-weight: 600;
}
.cp-pack-dialog-cancel {
  width: 100%;
  margin: 0.35rem 0 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0.55rem 1rem;
  font-weight: 500;
}
.cp-pack-dialog-cancel:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Layout placeholder — hidden when empty (background carries product art) */
.home-red-cup-media:empty {
  display: none;
}
.home-red-cup-media {
  width: 100%;
  max-width: min(380px, 92vw);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .home-red-cup-lead {
    max-width: 44rem;
  }
  .home-red-cup-media:not(:empty) {
    max-width: min(440px, 92vw);
    min-height: clamp(10rem, 22vw, 16rem);
  }
  .home-red-cup-size-wrap,
  .home-red-cup-actions {
    max-width: 20rem;
  }
}

@media (min-width: 900px) {
  #section-home-red-cup::before {
    background-position: 30% 43%;
    width: min(100%, clamp(30rem, 66vw, 58rem));
    transform: scale(1.045);
    transform-origin: 22% center;
  }
  /* Headline (left); intro + Add to cart (right column) */
  .home-red-cup-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 22rem);
    grid-template-rows: auto;
    column-gap: clamp(2.5rem, 5vw, 4rem);
    row-gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: stretch;
    min-height: clamp(22rem, 48vh, 36rem);
  }
  .home-red-cup-product,
  .home-red-cup-lead {
    display: contents;
  }
  .home-red-cup-inner .home-red-cup-media {
    display: none;
  }
  .home-red-cup-inner .home-red-cup-buy {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    max-width: min(22rem, 100%);
    width: 100%;
    margin: 0;
    padding: 0.15rem 0 0 clamp(0.65rem, 2vw, 1.25rem);
    box-sizing: border-box;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .home-red-cup-inner .home-red-cup-buy .home-red-cup-actions {
    margin-top: 0;
    max-width: none;
  }
  .home-red-cup-lead .section-title {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    text-align: left;
    justify-self: start;
    max-width: min(30rem, 100%);
    padding-right: clamp(0.75rem, 2.5vw, 1.5rem);
    align-self: start;
  }
}
/* Multi-line display headings: wrap at spaces only; avoid mid-word splits when type scales up */
.music-latest-title,
.stretch-pro-title {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  line-height: 1.2;
  padding-inline: 0.25rem;
  box-sizing: border-box;
}
.stretch-e {
  display: inline;
  transform: none;
  transform-origin: center center;
}

/* Product Grid - match original spacing */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}
/* Product tiles: same outer frame language as .music-discography-item */
.product-card {
  position: relative;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 0.5rem 0.55rem 0.65rem;
  box-sizing: border-box;
  overflow: visible;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0;
}
.product-card-heart {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.product-card-heart:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  transform: scale(1.06);
}
.product-card-heart:focus-visible {
  outline: 2px solid #c16452;
  outline-offset: 2px;
}
.product-card-heart.is-liked {
  color: #ed4956;
  background: rgba(23, 23, 23, 0.75);
}
.product-card-heart .product-card-heart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.product-card-heart .product-card-heart-icon svg {
  display: block;
}
.product-card:hover { transform: translateY(-4px); }
.product-card-link {
  display: flex;
  flex-direction: column;
  /* auto basis + min-content floor — never collapse tile below image + .info when a
     .product-card-size-wrap is injected between link and button */
  flex: 1 1 auto;
  min-height: min-content;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
/* Grid cells stretch card height; link absorbs extra row height so .info expands. */
.product-card:has(> .product-card-add-cart) .product-card-link {
  flex: 1 1 auto;
  min-height: min-content;
}
.product-card:has(> .product-card-add-cart) .product-card-add-cart {
  margin-top: 0;
}
.product-card:not(:has(.product-card-add-cart)) .product-card-link {
  border-radius: 0;
}
.product-card-link:focus-visible {
  outline: 2px solid #c16452;
  outline-offset: 2px;
}
.product-card .product-card-link > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #1a1a1a;
  flex-shrink: 0;
}
.product-card .product-card-thumb {
  display: grid;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #1a1a1a;
  flex-shrink: 0;
}
.product-card .product-card-thumb > img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card .product-card-thumb .product-card-img--hover {
  opacity: 0;
  transition: opacity 0.28s ease;
}
.product-card-link:hover .product-card-thumb .product-card-img--hover,
.product-card-link:focus-visible .product-card-thumb .product-card-img--hover {
  opacity: 1;
}
@media (hover: none) {
  .product-card .product-card-thumb .product-card-img--hover {
    display: none;
  }
}
.product-card .info {
  margin-top: 0.65rem;
  padding: 0.8rem 0.95rem;
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-sizing: border-box;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.product-card:has(> .product-card-add-cart) .info {
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.product-card .title {
  font-weight: 600;
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  line-height: 1.3;
}
.product-card .price {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0;
}
.product-card .price .sale { color: #e74c3c; }
.product-card .info small {
  display: block;
  margin-top: auto;
  padding-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}
.product-card--no-platter {
  background: transparent;
  border: none;
  padding: 0;
}
.product-card--no-platter:hover {
  transform: none;
}
.product-card--no-platter .info {
  background: #fff;
  border: none;
  color: #111;
}
.product-card--no-platter .price,
.product-card--no-platter .info small {
  color: #444;
}
.product-card-add-cart {
  flex-shrink: 0;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(167, 139, 250, 0.28);
  padding: 0.65rem 1rem;
  background: #3a2957;
  color: #f5f3ff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0 0 10px 10px;
}
.product-card > .product-card-size-wrap {
  flex-shrink: 0;
  background: #232323;
}
.product-card-add-cart:hover {
  background: #5b21b6;
  color: #fafafa;
}
.product-card-add-cart:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: -2px;
  z-index: 1;
}

.product-card-size-wrap {
  width: 100%;
  padding: 0 1rem 0.35rem;
  box-sizing: border-box;
}
.product-card-size-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  font-size: 0.8rem;
  width: 100%;
}
.product-card-size-label-text,
.product-detail-size-label-text {
  font-weight: 600;
  color: #ccc;
}
.product-card-size {
  width: 100%;
  max-width: 100%;
  padding: 0.4rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font: inherit;
  font-size: 0.85rem;
  background: #1a1a1a;
  color: #f5f5f5;
}
.product-detail-size-wrap {
  margin: 0.75rem 0 1rem;
}
.product-detail-size-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
}
.product-detail-size {
  max-width: 12rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
  background: #fff;
  color: #171717;
}
.cart-line-size {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.15rem;
}
.cart-toast-size {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.2rem;
}

/* Product detail: local cart + Shopify checkout */
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1rem 0 1.25rem;
}
.product-detail-add-cart-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background: #fff;
  color: #171717;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.product-detail-add-cart-btn:hover {
  background: #e8e8e8;
}
.product-detail-add-cart-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.product-detail-checkout-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #c16452;
  border-radius: 4px;
  background: transparent;
  color: #c16452;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.product-detail-checkout-btn:hover {
  background: rgba(193, 100, 82, 0.15);
  color: #e0806a;
}
.product-detail-checkout-btn:disabled {
  opacity: 0.75;
  cursor: wait;
}

/* Header cart + red item count badge (in-flow so count never paints over “Cart”) */
.header-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.cart-badge {
  position: static;
  margin: 0;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #e74c3c;
  border-radius: 999px;
  border: 2px solid #171717;
  box-sizing: border-box;
  flex-shrink: 0;
  align-self: center;
}
.cart-badge[hidden] {
  display: none !important;
}
.nav-sidebar-actions .header-cart-link .cart-badge {
  border-color: #232323;
}

/* Cart added toast */
.toast.cart-toast {
  align-items: flex-start;
}
.cart-toast-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #2a2a2a;
}
.cart-toast-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}
.cart-toast .cart-toast-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}
.cart-toast-name {
  font-size: 0.85rem;
  color: #ccc;
  word-break: break-word;
}
.cart-toast-link {
  color: #c16452;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.15rem;
}
.cart-toast-link:hover {
  text-decoration: underline;
}

/* Cart page */
.cart-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}
.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-line-info .cart-line-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.cart-line-info .cart-line-title a {
  color: inherit;
  text-decoration: none;
}
.cart-line-info .cart-line-title a:hover {
  color: #c16452;
}
.cart-line-meta {
  color: #888;
  font-size: 0.85rem;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cart-qty button {
  width: 2rem;
  height: 2rem;
  border: 1px solid #515151;
  background: #2a2a2a;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.cart-qty button:hover {
  background: #3a3a3a;
}
.cart-qty span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.cart-remove {
  margin-top: 0.5rem;
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.cart-summary {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
  text-align: right;
}
.cart-summary strong {
  font-size: 1.15rem;
}
.cart-checkout-wrap {
  margin-top: 1.25rem;
  text-align: center;
}
.cart-checkout-btn {
  display: inline-block;
  background: #c16452;
  color: #fff !important;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.cart-checkout-btn:hover {
  background: #a85544;
  color: #fff !important;
  transform: translateY(-1px);
}
.cart-checkout-hint {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}
.cart-checkout-hint--warn {
  color: #e8a598;
}
.cart-page-footnote {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.cart-empty-actions {
  margin-top: 1.5rem;
}

/* Account – Shop-style sign-in / create account gate */
.header-account-active {
  color: #c16452;
  font-weight: 600;
  text-decoration: none;
  pointer-events: none;
}
.account-main {
  min-height: 50vh;
  padding: 2rem 1rem 4rem;
}
.account-gate-wrap {
  max-width: 420px;
  margin: 0 auto;
}
.account-gate {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.account-gate-brand {
  text-align: center;
  margin-bottom: 1.25rem;
}
.account-gate-logo-link {
  display: inline-block;
}
.account-gate-logo-img {
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.account-gate-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.account-gate-heading {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: calc(1.35rem * var(--heading-scale));
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.account-gate-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.account-gate-tab {
  padding: 0.65rem 1rem;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  color: #aaa;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.account-gate-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.account-gate-tab[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.account-gate-panel:focus-visible {
  outline: none;
}
.account-shop-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  background: #fff;
  color: #171717 !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.account-shop-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  color: #171717 !important;
}
.account-shop-cta-icon {
  flex-shrink: 0;
  display: flex;
}
.account-shop-bag {
  display: block;
}
.account-shop-cta-text {
  letter-spacing: 0.02em;
}
.account-shop-disclosure {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #9a9a9a;
  text-align: center;
}
.account-shop-disclosure strong {
  color: #ccc;
  font-weight: 600;
}
.account-shop-legal {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  text-align: center;
}
.account-shop-legal a {
  color: #c16452;
  text-decoration: none;
}
.account-shop-legal a:hover {
  text-decoration: underline;
}
.account-gate-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #666;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.account-gate-divider::before,
.account-gate-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.account-gate-email-lead {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}
.account-email-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.account-email-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}
.account-gate-local-note {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  line-height: 1.5;
  color: #666;
  text-align: center;
}
.account-gate-back {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.85rem;
}
.account-gate-back a {
  color: #888;
}
.account-gate-back a:hover {
  color: #c16452;
}

/* Shop filter tabs */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.shop-filters .shop-filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(35, 35, 35, 0.8);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.shop-filters .shop-filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.shop-filters .shop-filter-btn.active {
  background: #fff;
  color: #171717;
  border-color: #fff;
}
.shop-filters .shop-grid-toggle-btn {
  display: none;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 15, 15, 0.9);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.shop-filters .shop-grid-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
body.page-home .shop-filters.home-grid-controls .shop-grid-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .shop-filters .shop-grid-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.page-home #homeTeaProductGrid.home-tea-grid--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  body.page-home #homeTeaProductGrid.home-tea-grid--list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  body.page-favorites #favoritesProductGrid.favorites-grid--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  body.page-favorites #favoritesProductGrid.favorites-grid--list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* Auto-scroll target: offset for sticky header */
#shop-main-section {
  scroll-margin-top: 5.5rem;
}
.product-grid.shop-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #888;
}
footer a { color: #888; }

/* Narrow header: compact text links + icons (no hamburger / sidebar opener) */
@media (max-width: 992px) {
  header .header-leading-slot {
    min-width: 0;
  }
  /* Hide Account + Cart in header; keep icon group (notifications + heart) */
  header .header-right > a {
    display: none !important;
  }
  header .header-right > .header-icon-group {
    display: inline-flex !important;
  }
  header { grid-template-columns: 1fr auto 1fr; }
}
@media (max-width: 768px) {
  header { flex-wrap: wrap; }
  #productDetail { grid-template-columns: 1fr !important; }
}

/* Banner / Announcement bar */
.banner {
  text-align: center;
  padding: 0.75rem 1rem;
  background: #f8d7da;
  font-size: 0.85rem;
  color: #721c24;
}

/* Vault access / email capture pop-up (homepage) */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.popup-modal {
  position: relative;
  background: #fff;
  max-width: 400px;
  width: 100%;
  padding: 2rem 1.75rem;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  color: #000;
  text-align: center;
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #000;
  cursor: pointer;
  padding: 0.25rem;
}
.popup-close:hover { opacity: 0.7; }
.popup-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
}
.popup-headline {
  font-size: calc(1rem * var(--heading-scale));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.25rem;
  color: #000;
}
.popup-vault-tagline {
  font-size: 0.9rem;
  color: #444;
  margin: 0 0 1rem;
  font-weight: 600;
}
.popup-vault-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}
.popup-vault-list li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.popup-vault-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.35em;
  height: 0.35em;
  background: #e74c3c;
  border-radius: 50%;
}
.popup-offer {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  color: #000;
}
.popup-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 1rem 0;
  overflow: hidden;
}
.popup-phone-prefix {
  padding: 0.65rem 0.75rem;
  background: #f5f5f5;
  font-size: 0.9rem;
  color: #333;
  border-right: 1px solid #ccc;
}
.popup-input {
  flex: 1;
  padding: 0.65rem 0.75rem;
  border: none;
  font-size: 1rem;
  min-width: 0;
}
.popup-input::placeholder { color: #999; }
.popup-disclaimer {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
  margin: 0 0 1rem;
  text-align: left;
}
.popup-disclaimer a { color: #171717; text-decoration: underline; }
.popup-btn-signup {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #e74c3c;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.popup-btn-signup:hover { background: #c0392b; }
.popup-btn-nothanks {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}
.popup-btn-nothanks:hover { background: #f5f5f5; }

/* Dock - fixed bottom bar (~44% larger than original) */
.dock-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* Space above dock for tooltips; safe areas on notched devices */
  padding-top: 2rem;
  padding-right: max(0.72rem, env(safe-area-inset-right, 0px));
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  padding-left: max(0.72rem, env(safe-area-inset-left, 0px));
  pointer-events: none;
  z-index: 100;
  box-sizing: border-box;
}
.dock {
  pointer-events: auto;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  padding: 0.72rem;
  border-radius: 1.44rem;
  /* Thin neutral veil only — color comes from what’s behind (blur + saturation lift) */
  background: rgba(12, 12, 14, 0.36);
  backdrop-filter: blur(22px) saturate(2.15) contrast(1.06);
  -webkit-backdrop-filter: blur(22px) saturate(2.15) contrast(1.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14);
  width: fit-content;
  max-width: min(
    80.64rem,
    calc(100vw - 1rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  box-sizing: border-box;
  overflow: visible;
}

/* Light specular only — no baked-in brand tint so background hues read through */
.dock::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.04) 18%,
      transparent 40%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 28%);
  mix-blend-mode: soft-light;
  opacity: 0.55;
  transition: opacity 0.35s ease;
}

.dock::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    125% 90% at 50% 120%,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 55%
  );
  mix-blend-mode: soft-light;
  opacity: 0.4;
  transition: opacity 0.35s ease;
}

.dock:hover::before {
  opacity: 0.68;
}
.dock:hover::after {
  opacity: 0.52;
}

.dock:hover {
  background: rgba(12, 12, 14, 0.32);
  backdrop-filter: blur(22px) saturate(2.35) contrast(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(2.35) contrast(1.08);
  box-shadow:
    0 14px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}
.dock-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.08rem;
  border: none;
  border-radius: 0.72rem;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dock-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1) translateY(-4px);
}
.dock-btn:active { transform: scale(0.95); }
.dock-wrap a.dock-btn {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.dock-icon {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
}
.dock-btn-sections {
  min-width: 47px;
  min-height: 47px;
}
/* Fallback for stale deployments that still render plain-text "Sections" buttons. */
.dock-btn-sections:not(.dock-btn-sections--icon-ready) {
  color: #fff;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.dock-btn-sections:not(.dock-btn-sections--icon-ready)::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background:
    linear-gradient(currentColor, currentColor) center 4px / 16px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center 10px / 16px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 6px 16px / 10px 2px no-repeat;
  opacity: 0.95;
}
.dock-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%) translateY(-0.72rem);
  padding: 0.36rem 0.72rem;
  border-radius: 0.36rem;
  background: #2a2a2a;
  color: #fff;
  font-size: 1.08rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.dock-btn:hover .dock-tooltip,
.dock-btn:focus-visible .dock-tooltip {
  opacity: 1;
  visibility: visible;
}
.dock-badge {
  position: absolute;
  top: 0.12rem;
  right: 0.12rem;
  width: 1rem;
  height: 1rem;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
  background: #ed4956;
  border: 1.5px solid rgba(23, 23, 23, 0.95);
  pointer-events: none;
}
.dock-btn-shop .dock-badge,
.dock-btn-music .dock-badge {
  display: block;
}

.dock-profile-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dock-profile-lock {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.dock-profile-lock svg {
  display: block;
  width: 8px;
  height: 8px;
}
.dock-btn-profile.dock-btn-profile--unlocked .dock-profile-lock {
  display: none;
}
.dock-btn-profile .dock-tooltip {
  white-space: normal;
  max-width: 120px;
  text-align: center;
}

/* Dock: tablets & small laptops — scale between phone and desktop */
@media (max-width: 900px) {
  .dock-wrap {
    padding-top: 1.35rem;
  }
  .dock {
    gap: clamp(0.22rem, 1.2vw, 0.36rem);
    padding: clamp(0.5rem, 1.8vw, 0.72rem);
    border-radius: clamp(0.95rem, 3vw, 1.44rem);
  }
  .dock-btn {
    padding: clamp(0.55rem, 2vw, 1.08rem);
    border-radius: clamp(0.5rem, 2vw, 0.72rem);
  }
  .dock-icon {
    width: clamp(22px, 3.8vw, 29px);
    height: clamp(22px, 3.8vw, 29px);
  }
  .dock-tooltip {
    font-size: clamp(0.85rem, 2.4vw, 1.08rem);
    padding: 0.3rem 0.55rem;
  }
}

@media (max-width: 640px) {
  .dock-wrap {
    padding-top: 1rem;
  }
  .dock {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.3rem;
    column-gap: clamp(0.15rem, 1.5vw, 0.28rem);
    padding: 0.45rem 0.5rem;
  }
  .dock-btn:hover {
    transform: scale(1.05) translateY(-2px);
  }
}

/* Dock: compact on phone-sized screens, no horizontal overflow */
@media (max-width: 480px) {
  .dock-wrap {
    min-height: 0;
    padding-top: 0.5rem;
    padding-right: max(0.35rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(0.35rem, env(safe-area-inset-bottom, 6px));
    padding-left: max(0.35rem, env(safe-area-inset-left, 0px));
    align-items: flex-end;
  }
  .dock {
    gap: 0.2rem;
    row-gap: 0.2rem;
    padding: 0.4rem 0.45rem;
    border-radius: 0.85rem;
    max-width: calc(100vw - 0.7rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  }
  .dock:hover {
    box-shadow:
      0 8px 28px rgba(0, 0, 0, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -1px 0 rgba(0, 0, 0, 0.14);
  }
  .dock-btn {
    padding: 0.42rem;
    border-radius: 0.5rem;
  }
  .dock-btn:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.08);
  }
  .dock-btn:active {
    transform: scale(0.92);
  }
  .dock-icon {
    width: 20px;
    height: 20px;
  }
  .dock-tooltip {
    font-size: 0.8rem;
    padding: 0.28rem 0.5rem;
    transform: translateX(-50%) translateY(-0.45rem);
  }
  .dock-badge {
    width: 0.55rem;
    height: 0.55rem;
    min-width: 8px;
    min-height: 8px;
    top: 0.06rem;
    right: 0.06rem;
  }
  .dock-profile-lock {
    width: 11px;
    height: 11px;
    top: -2px;
    right: -2px;
  }
  .dock-profile-lock svg {
    width: 6px;
    height: 6px;
  }
}

/* Very narrow phones */
@media (max-width: 360px) {
  .dock {
    gap: 0.12rem;
    row-gap: 0.15rem;
    padding: 0.32rem 0.35rem;
  }
  .dock-btn {
    padding: 0.36rem;
  }
  .dock-icon {
    width: 18px;
    height: 18px;
  }
}

/* Landscape: short viewports (phones, small tablets) */
@media (max-height: 520px) and (orientation: landscape) {
  .dock-wrap {
    padding-top: 0.35rem;
    padding-bottom: max(0.25rem, env(safe-area-inset-bottom, 0px));
  }
  .dock {
    gap: 0.18rem;
    row-gap: 0.18rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.75rem;
  }
  .dock-btn {
    padding: 0.38rem;
    border-radius: 0.45rem;
  }
  .dock-btn:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.08);
  }
  .dock-icon {
    width: 20px;
    height: 20px;
  }
}

/* Large / ultra-wide: keep dock readable, don’t stretch edge-to-edge */
@media (min-width: 1400px) {
  .dock-wrap {
    padding-top: 2.25rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .dock {
    padding: 0.85rem 1rem;
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dock-btn,
  .dock-btn:hover,
  .dock-btn:active {
    transition: none;
    transform: none;
  }
}

html.reduce-motion-user .dock-btn,
html.reduce-motion-user .dock-btn:hover,
html.reduce-motion-user .dock-btn:active {
  transition: none;
  transform: none;
}

/* Vault landing page (profile.html) */
.profile-landing {
  padding: 3rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.6) 0%, var(--bg, #171717) 100%);
}
.profile-landing-inner {
  max-width: min(100%, 960px);
  margin: 0 auto;
}
.profile-landing-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  width: 100%;
  max-width: 100%;
  height: min(85vh, 1200px);
  max-height: min(85vh, 1200px);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
/* Fill hero frame; portrait video uses full width (may crop top/bottom). */
.profile-landing-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}
.profile-landing-title {
  font-size: clamp(calc(2.25rem * var(--heading-scale)), calc(8vw * var(--heading-scale)), calc(4rem * var(--heading-scale)));
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
  color: #fff;
}
.profile-landing-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.25rem;
}
.profile-landing-welcome {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.profile-section {
  padding: 2rem 1.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}
#vault-main-section {
  background: #2d0f3f;
}
#vault-main-section > .section-title.stretch-pro-title {
  color: rgba(107, 15, 255, 1);
}
.profile-section-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin: -0.5rem 0 1.5rem;
  font-size: 0.95rem;
}
.vault-fanmail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin: 0 0 1rem;
  align-items: stretch;
  justify-items: stretch;
}
.vault-fanmail-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.36);
  border-radius: 12px;
  padding: 1.15rem 1rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  color: #312e81;
  box-shadow: 0 2px 14px rgba(91, 33, 182, 0.08);
}
.vault-fanmail-card--featured {
  display: block;
  width: 100%;
  margin: 0;
  max-width: none;
  justify-self: stretch;
}
.vault-fanmail-title {
  margin: 0;
  font-size: calc(1.05rem * var(--heading-scale));
  font-weight: 600;
  color: #312e81;
}
.vault-fanmail-copy {
  margin: 0.5rem 0 0.9rem;
  color: #5b4d8c;
  line-height: 1.5;
  font-size: 0.92rem;
}
.vault-fanmail-form {
  display: grid;
  gap: 0.55rem;
  text-align: left;
  justify-items: stretch;
  max-width: min(100%, 620px);
  margin: 0 auto;
}
.vault-fanmail-form .vault-fanmail-label,
.vault-fanmail-form .vault-fanmail-input,
.vault-fanmail-form .vault-fanmail-submit {
  width: 100%;
}
.vault-fanmail-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b5b8c;
}
.vault-fanmail-input {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  justify-self: stretch;
}
.vault-fanmail-form .profile-content-card-input.vault-fanmail-input {
  max-width: none;
}
.vault-fanmail-textarea {
  min-height: 6.1rem;
  resize: vertical;
}
.vault-fanmail-submit {
  width: min(100%, 560px);
  justify-self: center;
}
.vault-fanmail-featured-list {
  display: grid;
  gap: 0.7rem;
}
.vault-fanmail-featured-item {
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  padding: 0.8rem 0.85rem;
}
.vault-fanmail-featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}
.vault-fanmail-featured-name {
  margin: 0;
  color: #312e81;
  font-size: 0.9rem;
  font-weight: 600;
}
.vault-fanmail-featured-date {
  margin: 0;
  font-size: 0.76rem;
  color: #6b5b8c;
}
.vault-fanmail-featured-message {
  margin: 0;
  color: #4c1d95;
  line-height: 1.45;
  font-size: 0.92rem;
}
.vault-fanmail-empty {
  margin: 0;
  padding: 0.72rem 0.8rem;
  border-radius: 10px;
  border: 1px dashed rgba(124, 58, 237, 0.28);
  color: #6b5b8c;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.vault-fanmail-admin {
  background: linear-gradient(160deg, rgba(254, 202, 202, 0.98) 0%, rgba(254, 226, 226, 0.95) 100%);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1rem;
  color: #7f1d1d;
  box-shadow:
    0 6px 20px rgba(220, 38, 38, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.vault-fanmail-admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}
.vault-fanmail-lock-btn {
  min-width: 5rem;
}
.vault-fanmail-admin-list {
  display: grid;
  gap: 0.75rem;
}
.vault-fanmail-admin-item {
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.8rem;
}
.vault-fanmail-admin-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}
.vault-fanmail-admin-name {
  margin: 0;
  font-weight: 600;
  color: #312e81;
}
.vault-fanmail-admin-status {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  color: #6b5b8c;
}
.vault-fanmail-admin-status--approved {
  border-color: rgba(34, 197, 94, 0.45);
  color: #166534;
  background: rgba(34, 197, 94, 0.08);
}
.vault-fanmail-admin-status--pending {
  border-color: rgba(234, 179, 8, 0.5);
  color: #854d0e;
  background: rgba(234, 179, 8, 0.08);
}
.vault-fanmail-admin-status--hidden {
  border-color: rgba(236, 72, 153, 0.45);
  color: #9d174d;
  background: rgba(236, 72, 153, 0.08);
}
.vault-fanmail-admin-message {
  margin: 0.6rem 0 0.25rem;
  color: #4c1d95;
  line-height: 1.42;
  font-size: 0.9rem;
}
.vault-fanmail-admin-date {
  margin: 0;
  font-size: 0.74rem;
  color: #6b5b8c;
}
.vault-fanmail-admin-controls {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.vault-fanmail-admin-select {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #5b4d8c;
  font-size: 0.84rem;
}
.vault-fanmail-admin-select input {
  width: 1rem;
  height: 1rem;
  accent-color: #c084fc;
}
.vault-fanmail-admin-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.vault-fanmail-admin-btn {
  padding: 0.45rem 0.72rem;
  font-size: 0.82rem;
}
.vault-fanmail-admin-btn--secondary {
  background: rgba(255, 255, 255, 0.07);
}
.vault-fanmail-password-dialog {
  padding: 0;
  border: none;
  border-radius: 14px;
  width: min(22rem, 94vw);
  background: #141018;
  color: #faf7ff;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}
.vault-fanmail-password-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
}
.vault-fanmail-password-inner {
  padding: 1.2rem;
}
.vault-fanmail-password-title {
  margin: 0;
  font-size: 1.06rem;
}
.vault-fanmail-password-copy {
  margin: 0.55rem 0 0.9rem;
  color: rgba(250, 247, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.45;
}
.vault-fanmail-password-error {
  margin: 0.6rem 0 0;
  color: #fda4af;
  font-size: 0.86rem;
}
.vault-fanmail-password-actions {
  margin-top: 0.85rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.vault-fanmail-password-cancel {
  background: rgba(255, 255, 255, 0.06);
}
.profile-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
/* Vault: email capture for 10% discount (under BTS card) */
.profile-vault-discount {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.profile-vault-discount--locked {
  opacity: 0.94;
}
.profile-vault-discount--unlocked {
  opacity: 1;
}
.profile-vault-discount-locked-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.profile-vault-discount-locked-head .profile-content-card-label {
  margin-bottom: 0;
}
.profile-vault-discount-lock svg {
  display: block;
  opacity: 0.9;
}
.profile-vault-discount-title--unlocked {
  margin: 0 0 0.5rem;
}
.profile-vault-discount-title {
  margin: 0 0 0.5rem;
  font-size: calc(1.05rem * var(--heading-scale));
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}
.profile-vault-discount-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}
.profile-vault-discount-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  box-sizing: border-box;
}
.profile-vault-discount-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.profile-vault-discount-success-msg {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}
.profile-vault-discount-code {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: #fff;
}
.profile-vault-discount-copy {
  margin-top: 0.25rem;
}
.profile-content-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.profile-content-card--placeholder {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.profile-content-card-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.profile-content-card--locked .profile-content-card-label {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.65rem;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.2);
}
.profile-section--links {
  padding-top: 0;
}
.profile-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.profile-link-card {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
}
.profile-link-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Toasts */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
  max-width: calc(100vw - 2rem);
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(23, 23, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.9rem;
  max-width: 320px;
  animation: toast-in 0.35s ease-out forwards;
}
.toast--exiting {
  animation: toast-out 0.25s ease-in forwards;
}
/* Vault unlock: bouncier entrance + green accent */
.toast.toast--vault-unlock {
  animation: toast-vault-in 0.6s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.12),
    0 10px 36px rgba(34, 197, 94, 0.18),
    0 4px 20px rgba(0, 0, 0, 0.35);
}
.toast.toast--vault-unlock .toast-icon {
  animation: toast-vault-icon-pop 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) 0.08s both;
}
@keyframes toast-vault-in {
  0% {
    opacity: 0;
    transform: translateX(110%) scale(0.88);
  }
  65% {
    opacity: 1;
    transform: translateX(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes toast-vault-icon-pop {
  0% {
    transform: scale(0.5) rotate(-25deg);
    opacity: 0;
  }
  70% {
    transform: scale(1.12) rotate(6deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
html.reduce-motion-user .toast.toast--vault-unlock {
  animation: toast-in 0.35s ease-out forwards;
}
html.reduce-motion-user .toast.toast--vault-unlock .toast-icon {
  animation: none;
}
.toast--success .toast-icon {
  color: #4ade80;
}
.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(1rem);
  }
}

/* Vault content cards: locked / unlocking / unlocked */
.profile-content-card {
  position: relative;
  min-height: 140px;
  overflow: hidden;
}
.profile-content-card--locked .profile-content-card-locked {
  display: block;
}
.profile-content-card--locked .profile-content-card-unlocked {
  display: none;
}
.profile-content-card--unlocked .profile-content-card-locked {
  display: none;
}
.profile-content-card--unlocked .profile-content-card-unlocked {
  display: block;
}
.profile-content-card--unlocked .profile-content-card-lock {
  display: none;
}
.profile-content-card-locked-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.profile-content-card-locked-head .profile-content-card-label {
  margin-bottom: 0;
}
.profile-content-card-lock {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}
.profile-content-card-lock svg {
  display: block;
}
.profile-content-card-locked,
.profile-content-card-unlocked {
  padding: 0;
  text-align: center;
}
.profile-content-card-unlocked-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.profile-unlock-icon {
  display: inline-flex;
  color: #4ade80;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.35));
}
.profile-content-card-label--unlocked {
  margin-bottom: 0;
}
.profile-unlock-icon--pop {
  animation: profile-unlock-icon-in 1.15s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}
@keyframes profile-unlock-icon-in {
  0% {
    transform: scale(0.4) rotate(-18deg);
    opacity: 0;
  }
  70% {
    transform: scale(1.08) rotate(4deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
html.reduce-motion-user .profile-unlock-icon--pop {
  animation: none;
}
.profile-content-card-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.35rem;
  font-size: 1rem;
}
.profile-content-card-task {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.profile-content-card-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.profile-content-card-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}
.profile-content-card-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
.profile-content-card-input {
  width: 100%;
  max-width: 220px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
}
.profile-content-card-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.profile-vault-discount-form .profile-vault-discount-input {
  max-width: min(100%, 440px);
  width: 100%;
  padding: 0.65rem 1rem;
  min-height: 2.75rem;
  font-size: 1rem;
  box-sizing: border-box;
  text-align: center;
}
.profile-content-card-content {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Vault: SMS opt-in (unlocked BTS card) */
.profile-vault-sms {
  margin-top: 0.35rem;
  width: 100%;
  max-width: min(100%, 26rem);
  margin-left: auto;
  margin-right: auto;
}
.profile-vault-sms-desc {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
.profile-vault-sms-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: stretch;
  text-align: left;
}
.profile-vault-sms-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}
.profile-vault-sms-input {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  padding: 0.6rem 0.85rem;
  min-height: 2.65rem;
  font-size: 1rem;
}
.profile-vault-sms-consent-label {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
  margin: 0.1rem 0 0;
}
.profile-vault-sms-consent {
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  flex-shrink: 0;
  accent-color: #c084fc;
}
.profile-vault-sms-consent-text {
  flex: 1;
  min-width: 0;
}
.profile-vault-sms-submit {
  margin-top: 0.25rem;
  width: 100%;
  max-width: none;
}
.profile-vault-sms-success {
  text-align: center;
  padding: 0.35rem 0 0;
}
.profile-vault-sms-success-msg {
  margin: 0;
}
.profile-vault-sms--locked {
  margin-top: 0.5rem;
}
.profile-content-card-task--bts-sms {
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}
.profile-vault-bts-unlocked-copy {
  text-align: center;
  max-width: 28rem;
  margin: 0.5rem auto 0;
  line-height: 1.5;
}

/* Vault: Yung Miami–style welcome after BTS SMS unlock */
.vault-bts-welcome-dialog {
  padding: 0;
  border: none;
  border-radius: 16px;
  max-width: min(24rem, 94vw);
  background: #141018;
  color: #faf7ff;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}
.vault-bts-welcome-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.vault-bts-welcome-inner {
  padding: 1.5rem 1.35rem 1.4rem;
  box-sizing: border-box;
}
.vault-bts-welcome-title {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.vault-bts-welcome-body {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(250, 247, 255, 0.88);
}
.vault-bts-welcome-actions {
  margin: 0;
}
.vault-bts-welcome-dismiss {
  width: 100%;
  max-width: none;
}

.profile-content-card--locked {
  opacity: 0.92;
}
.profile-content-card--unlocking {
  animation: vault-unlock 2s ease-out forwards;
}
.profile-content-card--unlocking .profile-content-card-lock {
  animation: vault-lock-out 1.4s ease-out 0.43s forwards;
  opacity: 1;
}
.profile-content-card--unlocking .profile-content-card-unlocked {
  display: block;
  opacity: 0;
  animation: vault-content-in 1s ease-out 1s forwards;
}
.profile-content-card--unlocking .profile-content-card-locked {
  animation: vault-locked-fade 0.85s ease-out 0.3s forwards;
  opacity: 1;
}
@keyframes vault-unlock {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  15% {
    transform: scale(1.03);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  35% {
    transform: scale(1.02);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes vault-lock-out {
  to {
    opacity: 0;
    transform: scale(0.7);
  }
}
@keyframes vault-locked-fade {
  to {
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes vault-content-in {
  to {
    opacity: 1;
  }
}

/* Music page */
.music-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.music-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(45, 45, 48, 0.75) 0%, rgba(28, 28, 31, 0.85) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.music-card--apple {
  background: linear-gradient(145deg, rgba(255, 55, 95, 0.5) 0%, rgba(201, 28, 74, 0.45) 40%, rgba(160, 24, 56, 0.5) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 24px rgba(255, 55, 95, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.music-card--apple:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(255, 55, 95, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.music-card--apple .music-card-desc {
  color: rgba(255, 255, 255, 0.92);
}
/* Listen on Apple / Spotify image buttons — same box + fill as Apple (200×56 assets) */
.music-card--apple-img,
.music-card--spotify-img {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 200 / 56;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  flex-shrink: 0;
}
.music-card--apple-img:hover {
  background: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 55, 95, 0.35) !important;
}
.music-card--apple-img .music-card-apple-img,
.music-card--spotify-img .music-card-spotify-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: none;
  outline: none;
}
.music-card--spotify {
  background: linear-gradient(145deg, rgba(29, 185, 84, 0.5) 0%, rgba(22, 156, 70, 0.45) 40%, rgba(13, 107, 48, 0.5) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 24px rgba(29, 185, 84, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.music-card--spotify:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(29, 185, 84, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.music-card--spotify .music-card-desc {
  color: rgba(255, 255, 255, 0.92);
}
.music-card--spotify-img:hover {
  background: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
  border: none !important;
  outline: none !important;
}
.music-card-label {
  font-family: "Bebas", sans-serif;
  font-size: calc(1.25rem * var(--heading-scale));
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.music-card-desc {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
}
/* Music page: hero video full-bleed above quote-of-the-month */
body.page-music main > section.music-page-top {
  padding-top: 0;
}
.music-page-hero.hero-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  margin-top: 0;
}
/* Landscape music promos: wide 16:9 banner (not the tall portrait-style hero used elsewhere). */
body.page-music .music-page-hero.hero-section {
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: min(72vh, 1000px);
}
body.page-music .music-page-hero.hero-section .hero-video {
  object-fit: contain;
  object-position: center;
}

/* Quote-of-the-month: title + random quote inside one full-bleed pink banner */
.music-quote-month-section {
  padding-top: 0;
  margin-bottom: 1rem;
}
.music-quote-month-banner {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
}
/* Stack heading + injected quote inside the same .banner strip */
.music-quote-month-banner--with-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.6rem 1rem 0.75rem;
}
.music-quote-month-banner--with-quote.banner {
  /* Match site .banner bar; quote inherits readable contrast */
  background: #f8d7da;
  color: #721c24;
}
.music-quote-month-heading {
  margin: 0;
  font-weight: 800;
  font-size: clamp(calc(1.5rem * var(--heading-scale)), calc(5vw * var(--heading-scale)), calc(2.125rem * var(--heading-scale)));
  line-height: 1.2;
  letter-spacing: 0.03em;
  padding: 0 0 0.2rem;
  color: inherit;
}
.music-quote-month-root {
  max-width: 720px;
  margin: 0;
  padding: 0 1rem;
  box-sizing: border-box;
  width: 100%;
}
.music-quote-month-banner--with-quote .music-quote-month-root {
  margin-top: 0.15rem;
  padding-bottom: 0;
}
.music-quote-month-root--single {
  text-align: center;
}
.music-quote-month-item {
  margin: 0;
  padding: 0.45rem 0.9rem;
  border-left: 3px solid #c16452;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
  line-height: 1.45;
  color: #ddd;
  font-style: italic;
}
.music-quote-month-item--featured {
  display: inline-block;
  width: 100%;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  border-left: none;
  border-top: 3px solid #c16452;
  padding: 1rem 1.25rem 1.15rem;
  box-sizing: border-box;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.55;
}
/* Quote block inside pink banner: same bg as strip (no lighter patch) */
.music-quote-month-banner--with-quote .music-quote-month-item,
.music-quote-month-banner--with-quote .music-quote-month-item--featured {
  color: #4a1419;
  background: transparent;
  border-top: 2px solid rgba(114, 28, 36, 0.28);
  border-left: none;
  padding: 0.55rem 1rem 0.35rem;
  margin-top: 0.35rem;
}
.music-quote-month-item::before,
.music-quote-month-item::after {
  content: none;
}

.music-page-centered-lead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #aaa;
  line-height: 1.5;
}
.music-section-subtitle {
  text-align: center;
  color: #888;
  margin: 0 auto 2rem;
}
.music-releases,
.music-discography {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.music-discography-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;
  max-width: 900px;
}
.music-discography-pill {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.music-discography-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.music-discography-pill.music-discography-pill--active {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.music-discography {
  max-width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.25rem;
}
.music-discography-item {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 0.5rem 0.55rem 0.65rem;
  box-sizing: border-box;
}
.music-discography-item.music-appearance-item,
.music-discography-item:has(.music-discography-links) {
  display: flex;
  flex-direction: column;
}
.music-discography-item.music-appearance-item .music-appearances-links,
.music-discography-item .music-discography-links {
  margin-top: auto;
  min-height: 36px;
  flex-shrink: 0;
}
.music-discography-item.music-discography-item--hidden {
  display: none;
}
.music-discography-cover-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(42, 42, 46, 0.9) 0%, rgba(22, 22, 26, 0.95) 100%);
  border: none;
}
.music-discography-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.music-discography-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(55, 55, 58, 0.8) 0%, rgba(28, 28, 32, 0.9) 50%, rgba(18, 18, 22, 0.95) 100%);
}
.music-discography-title {
  margin: 0.5rem 0 0.2rem;
  font-weight: 600;
  color: #fff;
}
.music-discography-meta {
  margin: 0;
  color: #8f8f95;
  font-size: 0.85rem;
}
.music-discography-links,
.music-appearances-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
}
.music-discography-links .music-release-link,
.music-appearances-links .music-release-link {
  margin-right: 0;
}
.music-release {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(38, 38, 42, 0.7) 0%, rgba(26, 26, 30, 0.85) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.music-release-top {
  display: block;
  border-radius: 0;
}
.music-release-top:last-child {
  padding-bottom: 0;
}
.music-release-player {
  padding: 0 1rem 1rem;
}
.music-release-player .music-inline-player {
  margin: 0;
}
.music-release-artwork-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(42, 42, 46, 0.9) 0%, rgba(22, 22, 26, 0.95) 100%);
  border-radius: 0;
  /* Remove sub-pixel gap under images (inline baseline / line-box) */
  line-height: 0;
}
.music-release-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.music-release-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(55, 55, 58, 0.8) 0%, rgba(28, 28, 32, 0.9) 50%, rgba(18, 18, 22, 0.95) 100%);
}
.music-release-content {
  display: block;
}
.music-release-title {
  font-weight: 600;
  margin: 0.75rem 1rem 0.25rem;
}
.music-release-meta {
  font-size: 0.85rem;
  color: #888;
  margin: 0 1rem;
}
.music-release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 1rem 0;
}
.music-release-link {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.music-release-link:hover {
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.music-release-link--apple {
  background: linear-gradient(145deg, rgba(255, 55, 95, 0.4) 0%, rgba(201, 28, 74, 0.3) 100%);
  color: #ffc8d4;
  border-color: rgba(255, 255, 255, 0.1);
}
.music-release-link--apple:hover {
  background: linear-gradient(145deg, #ff4d6a 0%, #e91c4a 100%);
  color: #fff;
}
.music-release-link--spotify {
  background: linear-gradient(145deg, rgba(29, 185, 84, 0.4) 0%, rgba(22, 156, 70, 0.3) 100%);
  color: #a7f3d0;
  border-color: rgba(255, 255, 255, 0.1);
}
.music-release-link--spotify:hover {
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
}
/* Inline badge image links (discography / appearances / modal) – rectangular, same height */
.music-release-link--img {
  padding: 0;
  background: transparent !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-height: 36px;
  line-height: 0;
  vertical-align: middle;
}
.music-release-link--img:hover {
  background: transparent !important;
  box-shadow: none;
}
.music-release-link-img {
  display: block;
  height: 36px;
  width: auto;
  min-width: 100px;
  max-width: 160px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}
.music-release-links,
.music-appearances-links {
  align-items: center;
}
.music-appearances-links .music-release-link--img {
  flex-shrink: 0;
}
.music-release-link-genius:hover {
  background: linear-gradient(145deg, #c16452 0%, #a85545 100%);
  color: #fff;
}

/* Inline player (Spotify / Apple Music) */
.music-inline-player {
  margin: 0.75rem 1rem 0;
  padding: 0.75rem;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.music-player-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.music-player-tab {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s;
}
.music-player-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.music-player-tab.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.music-player-tab--spotify.active { background: linear-gradient(145deg, rgba(29, 185, 84, 0.5) 0%, rgba(22, 156, 70, 0.4) 100%); color: #fff; }
.music-player-tab--apple.active { background: linear-gradient(145deg, rgba(255, 55, 95, 0.5) 0%, rgba(201, 28, 74, 0.4) 100%); color: #fff; }
.music-player-embeds {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  min-height: 152px;
}
.music-player-iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: #1a1a1a;
}

/* Clickable card: open full-screen modal */
.music-release {
  cursor: pointer;
}

/* Full-screen release modal (wall-to-wall) */
.music-release-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: auto;
  padding: 0;
  background: #0c0c0e;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.35s ease;
}
.music-release-modal--open {
  opacity: 1;
  visibility: visible;
}
.music-release-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #0c0c0e;
  z-index: -1;
}
.music-release-modal-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  padding: 0 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform-origin: 50% 100%;
  transform: scaleY(0.02) scaleX(0.92);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 1.04),
    opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.music-release-modal--open .music-release-modal-inner {
  transform: scale(1);
  opacity: 1;
}
.music-release-modal-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.music-release-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}
.music-release-modal-content {
  width: 100%;
  padding: 0;
}
.music-release-modal-artwork {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1e;
  flex-shrink: 0;
}
.music-release-modal-artwork--placeholder {
  background: linear-gradient(160deg, #1e1e24 0%, #16161a 50%, #121216 100%);
}
.music-release-modal-body {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  width: 100%;
  box-sizing: border-box;
}
.music-release-modal-title {
  font-size: clamp(calc(1.5rem * var(--heading-scale)), calc(4.5vw * var(--heading-scale)), calc(2rem * var(--heading-scale)));
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff;
  text-align: center;
  line-height: 1.25;
}
.music-release-modal-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.75rem;
  text-align: center;
}
.music-release-modal-where {
  margin-bottom: 2rem;
}
.music-release-modal-where-title {
  font-size: calc(0.8rem * var(--heading-scale));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.75rem;
}
.music-release-modal-player-slot {
  min-height: 180px;
  padding: 1.25rem;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.music-release-modal-no-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  gap: 1rem;
}
.music-release-modal-no-embed-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.music-release-modal-where .music-inline-player {
  margin: 0;
  padding: 0;
  max-width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
}
.music-release-modal-where .music-player-embeds {
  min-height: 152px;
}
.music-release-modal-where .music-player-iframe {
  height: 152px;
}
.music-release-modal-open-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.music-release-modal-open-links .music-release-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
/* Tour callout */
.music-tour-callout {
  max-width: 560px;
  margin: 2rem auto;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(145deg, rgba(123, 47, 74, 0.22) 0%, rgba(42, 28, 38, 0.55) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(155, 75, 107, 0.35);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.music-tour-heading {
  font-size: calc(1.1rem * var(--heading-scale));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.35rem;
  color: #fff;
}
.music-tour-text {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0 0 1rem;
}
.music-tour-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(145deg, #9b4b6b 0%, #7a2f4a 50%, #6b2840 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 12px rgba(123, 47, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.music-tour-cta:hover {
  background: linear-gradient(145deg, #a85a7a 0%, #8b3a5a 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 47, 74, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
/* Tour popover (time-delayed, once per session) */
.music-tour-popover {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.music-tour-popover.music-tour-popover-visible {
  opacity: 1;
  visibility: visible;
}
.music-tour-popover-inner {
  position: relative;
  max-width: 360px;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(38, 38, 42, 0.92) 0%, rgba(26, 26, 30, 0.96) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.music-tour-popover-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0.25rem;
}
.music-tour-popover-close:hover {
  color: #fff;
}
.music-tour-popover-heading {
  font-size: calc(1.1rem * var(--heading-scale));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.35rem;
  color: #fff;
}
.music-tour-popover-text {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0 0 1rem;
}
.music-tour-popover-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
  margin-top: 0.25rem;
}
.music-tour-popover-inner .music-tour-popover-primary {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.music-tour-popover-location-btn {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.music-tour-popover-location-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.music-tour-popover-location-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}
.music-tour-popover-secondary-link {
  font-size: 0.85rem;
  color: #d8c4d4;
  text-decoration: none;
  margin-top: 0.15rem;
}
.music-tour-popover-secondary-link:hover {
  color: #efe8ef;
  text-decoration: underline;
}
.music-tour-popover-loc-status {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  margin: 0.75rem 0 0;
  line-height: 1.35;
}

/* Events near you (Music page, after geolocation) */
.music-events-near-you {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(123, 47, 74, 0.14) 0%, rgba(42, 42, 46, 0.55) 100%);
  border: 1px solid rgba(155, 75, 107, 0.38);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.music-events-near-you[hidden] {
  display: none !important;
}
.music-events-near-you-title {
  font-size: calc(0.88rem * var(--heading-scale));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: #fff;
}
.music-events-near-you-intro {
  font-size: 0.78rem;
  color: #bbb;
  margin: 0 0 1rem;
  line-height: 1.45;
}
.music-events-near-you .tour-dates-list {
  margin-top: 0;
}
.tour-date-distance {
  display: block;
  width: 100%;
  flex-basis: 100%;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}
.tour-date-card--near-you .tour-date-event + .tour-date-distance {
  margin-top: 0.2rem;
}

/* Tour page: date list */
.tour-dates-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 560px;
  margin: 0 auto;
}
.tour-date-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.1rem;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(155deg, rgba(42, 42, 46, 0.65) 0%, rgba(28, 28, 32, 0.8) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.tour-date-event {
  width: 100%;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.28;
}
.tour-date-date {
  font-weight: 600;
  color: #fff;
  font-size: 0.86rem;
}
.tour-date-venue {
  color: #fff;
  font-size: 0.86rem;
}
.tour-date-city {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.tour-date-ticket {
  padding: 0.2rem 0.48rem;
  font-size: 0.68rem;
  background: linear-gradient(145deg, #9B4B6B 0%, #7A2F4A 50%, #6B2840 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 10px rgba(123, 47, 74, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.tour-date-ticket:hover {
  background: linear-gradient(145deg, #A85A7A 0%, #8B3A5A 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(123, 47, 74, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.tour-date-card-clickable {
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tour-date-card-clickable:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.tour-date-ticket-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  width: 100%;
  margin-top: 0.5rem;
}
.tour-date-ticket-wrap .tour-date-ticket {
  margin-left: 0;
}
.tour-date-ticket:has(.tour-date-ticket-img) {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
  padding: 0.25rem 0.4rem;
  border-radius: 8px;
}
.tour-date-ticket:has(.tour-date-ticket-img):hover {
  background: #f8f8f8 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
.tour-date-ticket-img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 118px;
  object-fit: contain;
  vertical-align: middle;
}
/* Eventbrite logo: scale up so it matches Ticketmaster visual weight; button size unchanged */
.tour-date-ticket:has(img.tour-date-ticket-img[alt="Eventbrite"]) {
  overflow: visible;
}
img.tour-date-ticket-img[alt="Eventbrite"] {
  height: 22px;
  transform: scale(1.45);
  transform-origin: center center;
}
.tour-date-expand-label {
  width: 100%;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* Music page: Tour heading larger than other display section titles */
#section-music-tour {
  font-size: clamp(calc(2.5rem * var(--heading-scale)), calc(9vw * var(--heading-scale)), calc(4.5rem * var(--heading-scale)));
  line-height: 1.12;
  margin-bottom: 1rem;
}

/* Tour section intro copy (above date cards on Music + Tour pages) */
#section-music-tour + .music-section-subtitle,
#section-tour-intro > .music-section-subtitle {
  font-size: 0.85rem;
  margin-bottom: 1.35rem;
  line-height: 1.4;
}

/* Tour detail modal (card open) */
.tour-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.tour-detail-modal--open {
  opacity: 1;
  visibility: visible;
}
.tour-detail-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.tour-detail-modal-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, rgba(28, 28, 32, 0.98) 0%, rgba(18, 18, 22, 0.99) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.tour-detail-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.tour-detail-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.tour-detail-modal-content {
  padding-right: 2rem;
}
.tour-detail-title {
  font-size: calc(1.35rem * var(--heading-scale));
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff;
  line-height: 1.3;
}
.tour-detail-artist {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.tour-detail-date {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.25rem;
}
.tour-detail-venue-block {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.tour-detail-venue-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.35rem;
}
.tour-detail-venue-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.tour-detail-maps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.tour-detail-maps-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: scale(1.05);
}
.tour-detail-maps-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.tour-detail-maps-btn-icon svg {
  display: block;
}
.tour-detail-tickets-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.6rem;
}
.tour-detail-ticket-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.tour-detail-ticket-btn {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(145deg, #9B4B6B 0%, #7A2F4A 50%, #6B2840 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 10px rgba(123, 47, 74, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.tour-detail-ticket-btn:hover {
  background: linear-gradient(145deg, #A85A7A 0%, #8B3A5A 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(123, 47, 74, 0.5);
  transform: translateY(-1px);
}
.tour-detail-ticket-btn:has(.tour-detail-ticket-img) {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
}
.tour-detail-ticket-btn:has(.tour-detail-ticket-img):hover {
  background: #f8f8f8 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
.tour-detail-ticket-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  vertical-align: middle;
}
.tour-detail-ticket-btn:has(img.tour-detail-ticket-img[alt="Eventbrite"]) {
  overflow: visible;
}
img.tour-detail-ticket-img[alt="Eventbrite"] {
  height: 28px;
  transform: scale(1.45);
  transform-origin: center center;
}

/* Music page: Instagram section (embed-style cards) */
.music-instagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto;
}
.music-instagram-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 280px;
  width: 100%;
  gap: 0.65rem;
}
/* Official IG embed needs ~326px+; allow wider column for card stacks with embeds */
.music-instagram-stack--with-embed {
  max-width: min(540px, 100%);
}
.music-instagram-embed-host {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.music-instagram-embed-host .instagram-media {
  margin: 0 auto !important;
}
.music-instagram-embed-host iframe {
  max-width: 100% !important;
}
/* Card shell: real post embed in body (IG has no official “profile” embed) */
.music-instagram-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08);
  color: #262626;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 3px solid #e1306c;
}
.music-instagram-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
}
.music-instagram-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 52px;
  text-decoration: none;
  color: #262626;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: #fff;
}
.music-instagram-card-header:hover {
  color: #262626;
  opacity: 0.95;
}
.music-instagram-embed-host--in-card {
  padding: 0.5rem 0.5rem 0;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 0;
  min-height: 0;
}
.music-instagram-card-footer {
  display: block;
  text-align: center;
  padding: 0.55rem 1rem 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0095f6;
  text-decoration: none;
  position: relative;
  z-index: 2;
  background: #fff;
}
.music-instagram-card-footer:hover {
  text-decoration: underline;
  color: #0095f6;
}
.music-instagram-embed {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08);
  color: #262626;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 3px solid #e1306c;
}
.music-instagram-embed:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #262626;
}
.music-instagram-embed-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 52px;
}
.music-instagram-embed-logo {
  display: inline-flex;
  color: #262626;
  flex-shrink: 0;
}
.music-instagram-embed-logo svg {
  display: block;
}
.music-instagram-embed-brand {
  font-size: 0.8rem;
  font-weight: 600;
  color: #262626;
  margin-right: auto;
}
.music-instagram-embed-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.music-instagram-embed-name {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}
.music-instagram-embed-handle-inline {
  font-size: 0.75rem;
  color: #8e8e8e;
  font-weight: 500;
}
.music-instagram-embed-preview {
  position: relative;
  aspect-ratio: 1;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  border-radius: 8px;
  overflow: hidden;
}
.music-instagram-embed-preview-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  opacity: 0.9;
}
.music-instagram-embed-preview-icon {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.95);
}
.music-instagram-embed-preview-icon svg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.music-instagram-embed-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.5rem 1rem 0.65rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
}
.music-instagram-embed-cta {
  color: #0095f6;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.music-instagram-embed-arrow {
  font-size: 1rem;
  opacity: 0.9;
}
.music-instagram-embed:hover .music-instagram-embed-cta {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .music-releases {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .music-discography {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }
  .music-release-top {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-radius: 0;
  }
  /* Cover column matches row height; image covers full strip (no dead band under art). */
  .music-release-artwork-wrap {
    width: clamp(104px, 30vw, 132px);
    min-width: clamp(104px, 30vw, 132px);
    flex: 0 0 clamp(104px, 30vw, 132px);
    margin-left: 0;
    align-self: stretch;
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 0;
  }
  .music-release-artwork-wrap .music-release-artwork {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }
  .music-release-artwork-wrap .music-release-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }
  .music-release-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0.65rem 0.85rem 0.65rem 0.6rem;
  }
  .music-release-title {
    margin: 0 0 0.2rem;
  }
  .music-release-meta {
    margin: 0 0 0.5rem;
  }
  .music-release-links {
    margin: 0;
  }
  .music-release-player {
    padding: 0.75rem 1rem 1rem;
  }
  .music-platforms {
    flex-direction: column;
    gap: 1rem;
  }
  .music-card {
    flex-direction: row;
    min-width: unset;
    width: 100%;
    padding: 1rem 1.25rem;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
  }
  /* Image-only platform heroes: full-width banner, not row layout with empty flex track */
  .music-card--apple-img,
  .music-card--spotify-img {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }
  .music-card-label {
    margin-bottom: 0;
  }
  .music-tour-callout {
    margin: 2rem 1rem;
    padding: 1rem 1.25rem;
  }
  .music-instagram {
    flex-direction: column;
    align-items: center;
  }
}

/* ----- Search overlay (dock Search opens at top of screen) ----- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1rem 1rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}
.search-overlay[data-open="true"] {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.search-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  background: #fff;
  color: #1a1a1a;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.search-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.search-input {
  flex: 1;
  font-family: inherit;
  font-size: 1.125rem;
  padding: 0.6rem 0;
  border: none;
  outline: none;
  background: transparent;
  color: #1a1a1a;
}
.search-input::placeholder {
  color: #888;
}
.search-close {
  flex-shrink: 0;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.search-close:hover {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.06);
}
.search-results {
  overflow-y: auto;
  padding: 0.5rem 0;
  min-height: 120px;
}
.search-results-group {
  padding: 0 1.25rem 0.75rem;
}
.search-results-group:first-child {
  padding-top: 0;
}
.search-results-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin: 0 0 0.5rem;
  padding: 0.25rem 0;
}
.search-result-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.search-result-link:hover {
  background: rgba(0, 0, 0, 0.05);
}
.search-result-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #eee;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.search-result-body {
  flex: 1;
  min-width: 0;
}
.search-result-title {
  font-weight: 600;
  font-size: 0.9375rem;
}
.search-result-meta {
  font-size: 0.8125rem;
  color: #666;
  margin-top: 0.15rem;
}
.search-results-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: #888;
  font-size: 0.9375rem;
}
.search-results-empty a {
  color: inherit;
  text-decoration: underline;
}
.search-results-footer {
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.search-results-see-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}
.search-result-thumb--empty {
  background: linear-gradient(135deg, #e8e8e8, #f4f4f4);
}

/* Product detail description — frame matches .product-card border language */
.product-description {
  margin: 1.25rem 0 1rem;
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(16, 16, 16, 0.65);
  box-sizing: border-box;
}
.product-description-heading {
  font-size: calc(0.85rem * var(--heading-scale));
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}
#productInfo h1 {
  font-size: calc(2rem * var(--heading-scale));
  line-height: 1.2;
}
.product-description p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  white-space: pre-line;
}

/* Product Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #232323;
}
.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.carousel-img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  aspect-ratio: 1;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2); /* High transparency */
  color: rgba(255, 255, 255, 0.6);
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  border-radius: 4px;
}
.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.carousel-arrow.prev {
  left: 10px;
}
.carousel-arrow.next {
  right: 10px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dots .dot.active {
  background: #fff;
}

/* Favorites page – fixed full-ratio video backdrop + catalog over scroll */
body.page-favorites {
  background: #000;
}
body.page-favorites .banner {
  position: relative;
  z-index: 101;
}
.favorites-video-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Full-viewport hero: fill width; portrait clips vertically (cover). */
.favorites-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
}
.favorites-hero-mute-btn {
  position: fixed;
  bottom: max(1.25rem, calc(env(safe-area-inset-bottom, 0px) + 5.5rem));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 105;
}
.favorites-page-main {
  position: relative;
  z-index: 1;
}
body.page-favorites .favorites-hero-spacer {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  max-width: none;
  width: 100%;
  background: transparent;
  pointer-events: none;
}
body.page-favorites .favorites-catalog {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(23, 23, 23, 0.55) 0%,
    rgba(23, 23, 23, 0.88) 18%,
    rgba(23, 23, 23, 0.96) 40%,
    #171717 65%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.page-favorites footer {
  position: relative;
  z-index: 1;
  background: rgba(23, 23, 23, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─── Optional colorway: lavender page + pink header/chrome (Sections → Accessibility) ─── */
html.theme-soft-pop body {
  background: #f5f3ff;
  color: #3730a3;
}

html.theme-soft-pop a:hover {
  color: #db2777;
}

/* CTA pills in soft pop: flat soft pink + plum text (default theme keeps black pills) */
html.theme-soft-pop a.btn,
html.theme-soft-pop a.btn:visited,
html.theme-soft-pop button.btn {
  background: #fce7f3;
  color: #831843;
  border: 1px solid rgba(236, 72, 153, 0.4);
  box-shadow: 0 1px 4px rgba(219, 39, 119, 0.1);
}

html.theme-soft-pop a.btn:hover,
html.theme-soft-pop a.btn:focus-visible,
html.theme-soft-pop button.btn:hover,
html.theme-soft-pop button.btn:focus-visible {
  background: #f9a8d4;
  color: #500724;
  border-color: rgba(219, 39, 119, 0.55);
  box-shadow: 0 2px 8px rgba(219, 39, 119, 0.14);
}

html.theme-soft-pop header {
  background: linear-gradient(125deg, #f472b6 0%, #ec4899 42%, #db2777 100%);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

html.theme-soft-pop header a {
  color: #fff;
}

html.theme-soft-pop header a:hover {
  color: #fef3c7;
}

html.theme-soft-pop header.header--scrolled {
  background: linear-gradient(
    to bottom,
    rgba(236, 72, 153, 0.92) 0%,
    rgba(219, 39, 119, 0.78) 42%,
    rgba(219, 39, 119, 0.45) 78%,
    rgba(219, 39, 119, 0.14) 92%,
    rgba(219, 39, 119, 0) 100%
  );
  -webkit-backdrop-filter: brightness(1.02) saturate(1.15);
  backdrop-filter: brightness(1.02) saturate(1.15);
}

html.theme-soft-pop header.header--scrolled::before {
  background: rgba(219, 39, 119, 0.12);
  -webkit-backdrop-filter: blur(28px) saturate(1.85);
  backdrop-filter: blur(28px) saturate(1.85);
}

html.theme-soft-pop .logo-img {
  filter: brightness(0) invert(1);
}

html.theme-soft-pop .notification-btn:hover,
html.theme-soft-pop .header-heart-link:hover {
  color: #fef3c7;
}

html.theme-soft-pop .header-heart-link--active {
  color: #fce7f3;
}

html.theme-soft-pop .header-heart-link--active:hover {
  color: #fff;
}

html.theme-soft-pop .nav-sidebar-panel {
  background: linear-gradient(180deg, #be185d 0%, #9d174d 100%);
  border-left-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

html.theme-soft-pop .nav-sidebar-nav a,
html.theme-soft-pop .nav-sidebar-actions a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

html.theme-soft-pop .nav-sidebar-nav a:hover,
html.theme-soft-pop .nav-sidebar-actions a:hover {
  color: #fef3c7;
}

html.theme-soft-pop .nav-sidebar-shop-quick {
  border-top-color: rgba(255, 255, 255, 0.12);
}

html.theme-soft-pop .sections-sidebar-panel {
  background: linear-gradient(180deg, #be185d 0%, #9d174d 100%);
  border-right-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

html.theme-soft-pop .sections-sidebar-link {
  color: rgba(255, 255, 255, 0.92);
}

html.theme-soft-pop .sections-sidebar-link:hover {
  color: #fff;
}

html.theme-soft-pop .sections-sidebar-heading,
html.theme-soft-pop .sections-sidebar-title {
  color: rgba(255, 255, 255, 0.6);
}

html.theme-soft-pop .sections-sidebar-link.is-active {
  border-color: rgba(253, 230, 138, 0.55);
  color: #fef9c3;
}

html.theme-soft-pop footer {
  border-top-color: rgba(219, 39, 119, 0.2);
  color: #5b4d78;
  background: rgba(245, 243, 255, 0.98);
}

html.theme-soft-pop footer a {
  color: #be185d;
}

html.theme-soft-pop footer a:hover {
  color: #9d174d;
}

html.theme-soft-pop .banner {
  background: #ede9fe;
  color: #5b21b6;
}

html.theme-soft-pop .notification-btn {
  border-color: rgba(255, 255, 255, 0.38);
}

html.theme-soft-pop button.header-heart-link,
html.theme-soft-pop .header-heart-link {
  border-color: rgba(255, 255, 255, 0.38);
}

html.theme-soft-pop .notification-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(124, 58, 237, 0.38);
  box-shadow:
    0 2px 14px rgba(91, 33, 182, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.12);
  color: #3730a3;
}

html.theme-soft-pop .notification-panel-header {
  background: #fff;
  color: #6b5b8c;
  border-bottom-color: rgba(124, 58, 237, 0.12);
}

html.theme-soft-pop .notification-panel-list {
  background: #fff;
}

html.theme-soft-pop .notification-panel-title {
  color: #312e81;
}

html.theme-soft-pop .notification-panel-body {
  color: #5b4d78;
}

html.theme-soft-pop .notification-panel-link:hover {
  background: rgba(236, 72, 153, 0.1);
}

html.theme-soft-pop .dock {
  background: rgba(219, 39, 119, 0.45);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 10px 40px rgba(219, 39, 119, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

html.theme-soft-pop .dock:hover {
  background: rgba(219, 39, 119, 0.38);
  box-shadow:
    0 14px 48px rgba(219, 39, 119, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

html.theme-soft-pop .dock-tooltip {
  background: #9d174d;
  color: #fff;
}

html.theme-soft-pop .hero-section {
  background: #fff;
}

html.theme-soft-pop body.page-favorites {
  background: #f5f3ff;
}

html.theme-soft-pop .favorites-video-backdrop {
  background: #fff;
}

html.theme-soft-pop .home-below-hero-backdrop {
  background: #f5f3ff;
}

html.theme-soft-pop .page-home-main > section:not(.hero-section) {
  background: linear-gradient(
    180deg,
    rgba(237, 233, 254, 0.82) 0%,
    rgba(245, 243, 255, 0.9) 40%,
    rgba(250, 245, 255, 0.94) 100%
  );
}
html.theme-soft-pop .page-home-main > #section-home-tea,
html.theme-soft-pop .page-home-main > #section-home-aquarius {
  background: linear-gradient(
    180deg,
    rgba(10, 8, 22, 0.94) 0%,
    rgba(14, 10, 28, 0.96) 42%,
    rgba(18, 12, 32, 0.98) 100%
  );
  backdrop-filter: blur(1px) saturate(1.05);
  -webkit-backdrop-filter: blur(1px) saturate(1.05);
}

/* Red cup: fade into black (not white/lavender) on the right */
html.theme-soft-pop .page-home-main > #section-home-red-cup {
  background: linear-gradient(
    100deg,
    rgba(237, 233, 254, 0.72) 0%,
    rgba(70, 60, 105, 0.55) 32%,
    rgba(12, 10, 18, 0.97) 62%,
    #020202 100%
  );
}
html.theme-soft-pop #section-home-red-cup::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    95deg,
    transparent 0%,
    transparent 36%,
    rgba(0, 0, 0, 0.22) 52%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

html.theme-soft-pop body.page-home footer {
  background: rgba(245, 243, 255, 0.96);
  color: #5b4d78;
  border-top: 1px solid rgba(219, 39, 119, 0.12);
}

html.theme-soft-pop body.page-favorites .favorites-catalog {
  background: linear-gradient(
    180deg,
    rgba(237, 233, 254, 0.88) 0%,
    rgba(245, 243, 255, 0.94) 38%,
    rgba(250, 245, 255, 0.97) 58%,
    #f5f3ff 75%
  );
}

html.theme-soft-pop body.page-favorites footer {
  background: rgba(245, 243, 255, 0.97);
  color: #5b4d78;
  border-top-color: rgba(219, 39, 119, 0.15);
}

html.theme-soft-pop .search-input,
html.theme-soft-pop .nav-sidebar .search-input {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

html.theme-soft-pop .cart-badge {
  border-color: rgba(219, 39, 119, 0.95);
}

/* Shop / favorites: product cards & filters on lavender canvas */
html.theme-soft-pop .shop-product-count {
  color: #6b5b8c !important;
}

html.theme-soft-pop .shop-page-intro,
html.theme-soft-pop .home-section-intro {
  color: #6d28d9;
}
html.theme-soft-pop .shop-page-intro strong,
html.theme-soft-pop .home-section-intro strong {
  color: #5b21b6;
  font-weight: 700;
}

html.theme-soft-pop #section-home-red-cup .home-red-cup-intro {
  color: rgba(255, 255, 255, 1);
  background: transparent;
  border: none;
  box-shadow: none;
}
html.theme-soft-pop #section-home-red-cup .home-red-cup-intro strong {
  color: #f5f3ff;
  font-weight: 700;
}

html.theme-soft-pop #section-home-red-cup .home-red-cup-lead .stretch-pro-title {
  color: #faf5ff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(0, 0, 0, 0.55);
}

html.theme-soft-pop .home-aquarius-img {
  box-shadow: 0 12px 36px rgba(91, 33, 182, 0.22);
}

html.theme-soft-pop .home-red-cup-price-line {
  color: #312e81;
}
html.theme-soft-pop .home-red-cup-price-value {
  color: #5b21b6;
}
html.theme-soft-pop .home-red-cup-detail-link {
  color: #6d28d9;
}
html.theme-soft-pop .home-red-cup-detail-link:hover {
  color: #4c1d95;
}

html.theme-soft-pop .home-red-cup-buy .product-detail-size-label-text {
  color: #5b4d78;
}

html.theme-soft-pop #section-home-red-cup .home-red-cup-buy {
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (max-width: 899px) {
  html.theme-soft-pop #section-home-red-cup .home-red-cup-product {
    border-top-color: rgba(255, 255, 255, 0.14);
  }
}

html.theme-soft-pop #section-home-red-cup .home-red-cup-pack-select,
html.theme-soft-pop #section-home-red-cup .product-detail-size {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f3e8ff;
}

html.theme-soft-pop #section-home-red-cup .home-red-cup-pack-select:focus,
html.theme-soft-pop #section-home-red-cup .product-detail-size:focus {
  outline-color: #a78bfa;
}

html.theme-soft-pop #section-home-red-cup .product-card-add-cart.product-detail-add-cart-btn {
  background: #7c3aed;
  color: #fafafa;
}

html.theme-soft-pop #section-home-red-cup .product-card-add-cart.product-detail-add-cart-btn:hover {
  background: #6d28d9;
  color: #fff;
}

html.theme-soft-pop .section-title,
html.theme-soft-pop .shop-page-title,
html.theme-soft-pop .music-latest-title,
html.theme-soft-pop .stretch-pro-title {
  color: #5b21b6;
}

html.theme-soft-pop .product-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #1e1b4b;
  border-radius: 0;
  box-shadow: 0 2px 14px rgba(30, 27, 75, 0.12);
}

html.theme-soft-pop .product-card-link {
  background: transparent;
}

html.theme-soft-pop .product-card > .product-card-size-wrap {
  background: #fff;
}

html.theme-soft-pop .product-card .info {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(30, 27, 75, 0.45);
  border-radius: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

html.theme-soft-pop .product-card .product-card-link > img,
html.theme-soft-pop .product-card .product-card-thumb {
  border-radius: 0;
}

html.theme-soft-pop .product-card .info small {
  color: rgba(91, 33, 182, 0.5);
}

html.theme-soft-pop .product-card .title {
  color: #312e81;
}

html.theme-soft-pop .product-card .price {
  color: #6b5b8c;
}

html.theme-soft-pop .product-card .price .sale {
  color: #db2777;
}

html.theme-soft-pop .product-card-heart {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(190, 24, 93, 0.65);
  box-shadow: 0 2px 12px rgba(91, 33, 182, 0.12);
}

html.theme-soft-pop .product-card-heart:hover {
  background: #fff;
  color: #be185d;
}

html.theme-soft-pop .product-card-heart.is-liked {
  color: #db2777;
  background: rgba(253, 242, 248, 0.96);
}

html.theme-soft-pop .product-card-add-cart {
  border-radius: 0;
  border-top-color: rgba(30, 27, 75, 0.45);
  background: #3a2957;
  color: #f5f3ff;
}

html.theme-soft-pop .product-card-add-cart:hover {
  background: #5b21b6;
  color: #fafafa;
}

html.theme-soft-pop .product-card-size-label-text,
html.theme-soft-pop .product-detail-size-label-text {
  color: #5b4d78;
}

html.theme-soft-pop .product-card-size,
html.theme-soft-pop .product-detail-size-wrap select {
  background: #faf5ff;
  border-color: rgba(124, 58, 237, 0.28);
  color: #312e81;
}

html.theme-soft-pop .shop-filters .shop-filter-btn {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(124, 58, 237, 0.3);
  color: #5b21b6;
}

html.theme-soft-pop .shop-filters .shop-filter-btn:hover {
  background: #fff;
  border-color: rgba(236, 72, 153, 0.45);
  color: #831843;
}

html.theme-soft-pop .shop-filters .shop-filter-btn.active {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
  color: #fff;
  border-color: #db2777;
}

html.theme-soft-pop #productInfo h1 {
  color: #312e81;
}

html.theme-soft-pop #productInfo .price {
  color: #6b5b8c;
}

html.theme-soft-pop #productInfo .price .sale {
  color: #db2777;
}

html.theme-soft-pop .product-description {
  border: 1px solid rgba(124, 58, 237, 0.38);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 14px rgba(91, 33, 182, 0.08);
}

html.theme-soft-pop .product-description-heading {
  color: #6b5b8c;
  border-bottom-color: rgba(124, 58, 237, 0.2);
}

html.theme-soft-pop .product-description p {
  color: #4338ca;
}

html.theme-soft-pop .carousel-container {
  background: #ede9fe;
}

html.theme-soft-pop .carousel-dots .dot {
  background: rgba(91, 33, 182, 0.35);
}

html.theme-soft-pop .carousel-dots .dot.active {
  background: #db2777;
}

html.theme-soft-pop .product-detail-add-cart-btn {
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
  color: #5b21b6;
  border: 1px solid rgba(124, 58, 237, 0.22);
}

html.theme-soft-pop .product-detail-add-cart-btn:hover {
  background: #ede9fe;
}

html.theme-soft-pop .product-detail-checkout-btn {
  border-color: #db2777;
  color: #be185d;
}

html.theme-soft-pop .product-detail-checkout-btn:hover {
  background: rgba(236, 72, 153, 0.12);
  color: #9d174d;
}

html.theme-soft-pop .product-detail-size {
  background: #faf5ff;
  border-color: rgba(124, 58, 237, 0.28);
  color: #312e81;
}

html.theme-soft-pop .likes-tray-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(124, 58, 237, 0.38);
  box-shadow:
    0 2px 14px rgba(91, 33, 182, 0.1),
    0 20px 50px rgba(91, 33, 182, 0.14);
}

html.theme-soft-pop .likes-tray-header {
  background: #fff;
  border-bottom-color: rgba(124, 58, 237, 0.12);
}

html.theme-soft-pop .likes-tray-title {
  color: #312e81;
}

html.theme-soft-pop .likes-tray-close {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.22);
  color: #5b21b6;
}

html.theme-soft-pop .likes-tray-close:hover {
  background: rgba(236, 72, 153, 0.14);
  color: #be185d;
}

html.theme-soft-pop .likes-tray-hint {
  background: #fff;
  color: #6b5b8c;
  border-bottom-color: rgba(124, 58, 237, 0.1);
}

html.theme-soft-pop .likes-tray-list {
  background: #faf5ff;
}

html.theme-soft-pop .likes-tray-row {
  border-bottom-color: rgba(124, 58, 237, 0.1);
}

html.theme-soft-pop .likes-tray-row-name {
  color: #312e81;
}

html.theme-soft-pop .likes-tray-row-name:hover {
  color: #db2777;
}

html.theme-soft-pop .likes-tray-row-price {
  color: #6b5b8c;
}

html.theme-soft-pop .likes-tray-row-sale {
  color: #db2777;
}

html.theme-soft-pop .likes-tray-row-missing {
  color: #7c6b9e;
}

html.theme-soft-pop .likes-tray-row-thumb {
  background: #ede9fe;
}

html.theme-soft-pop .likes-tray-row-thumb--empty {
  background: #ddd6fe;
}

html.theme-soft-pop .likes-tray-size,
html.theme-soft-pop .likes-tray-row .likes-tray-size {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.28);
  color: #312e81;
}

html.theme-soft-pop .likes-tray-row-cta--add {
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
  color: #5b21b6;
  border: 1px solid rgba(124, 58, 237, 0.22);
}

html.theme-soft-pop .likes-tray-row-cta--add:hover {
  background: #ede9fe;
}

html.theme-soft-pop .likes-tray-row-cta--checkout {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
}

html.theme-soft-pop .likes-tray-empty {
  color: #6b5b8c;
}

html.theme-soft-pop .likes-tray-footer {
  border-top-color: rgba(124, 58, 237, 0.12);
  background: rgba(237, 233, 254, 0.96);
}

html.theme-soft-pop .likes-tray-footer-link {
  color: #6b5b8c;
}

html.theme-soft-pop .likes-tray-footer-link:hover {
  color: #be185d;
}

html.theme-soft-pop .likes-tray-footer-cart {
  background: rgba(219, 39, 119, 0.12);
  color: #831843;
}

html.theme-soft-pop .likes-tray-footer-cart:hover {
  background: rgba(219, 39, 119, 0.2);
  color: #701a75;
}

html.theme-soft-pop .cart-line {
  border-bottom-color: rgba(124, 58, 237, 0.16);
}

html.theme-soft-pop .cart-line-info .cart-line-title a:hover {
  color: #db2777;
}

html.theme-soft-pop .cart-line-meta,
html.theme-soft-pop .cart-line-size {
  color: #6b5b8c;
}

html.theme-soft-pop .cart-qty button {
  border-color: rgba(124, 58, 237, 0.35);
  background: #fff;
  color: #312e81;
}

html.theme-soft-pop .cart-qty button:hover {
  background: #f3e8ff;
}

html.theme-soft-pop .cart-qty span {
  color: #312e81;
}

html.theme-soft-pop .cart-summary {
  border-top-color: rgba(124, 58, 237, 0.2);
}

html.theme-soft-pop .cart-checkout-btn {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
}

html.theme-soft-pop .cart-checkout-btn:hover {
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

html.theme-soft-pop .cart-checkout-hint {
  color: #6b5b8c;
}

html.theme-soft-pop .cart-checkout-hint--warn {
  color: #be185d;
}

/* Music page — discography, releases, filters, players, modal (soft pop) */
html.theme-soft-pop .music-section-subtitle {
  color: #6b5b8c;
}

html.theme-soft-pop .music-page-centered-lead {
  color: #6b5b8c;
}

html.theme-soft-pop .music-discography-pill {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(124, 58, 237, 0.28);
  color: #5b21b6;
}

html.theme-soft-pop .music-discography-pill:hover {
  background: #fff;
  border-color: rgba(236, 72, 153, 0.4);
  color: #831843;
}

html.theme-soft-pop .music-discography-pill.music-discography-pill--active {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
  color: #fff;
  border-color: #db2777;
}

html.theme-soft-pop .music-discography-item {
  border-color: rgba(124, 58, 237, 0.38);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 14px rgba(91, 33, 182, 0.08);
}

html.theme-soft-pop .music-discography-cover-wrap {
  background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
  box-shadow: none;
}

html.theme-soft-pop .music-discography-placeholder {
  background: linear-gradient(145deg, #ede9fe 0%, #e9d5ff 100%);
}

html.theme-soft-pop .music-discography-title {
  color: #312e81;
}

html.theme-soft-pop .music-discography-meta {
  color: #6b5b8c;
}

html.theme-soft-pop .music-release {
  background: linear-gradient(160deg, #ffffff 0%, #faf5ff 100%);
  border-color: rgba(124, 58, 237, 0.14);
  box-shadow: 0 6px 24px rgba(91, 33, 182, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

html.theme-soft-pop .music-release-artwork-wrap {
  background: linear-gradient(145deg, #faf5ff 0%, #ede9fe 100%);
}

html.theme-soft-pop .music-release-placeholder {
  background: linear-gradient(145deg, #ede9fe 0%, #e9d5ff 100%);
}

html.theme-soft-pop .music-release-title {
  color: #312e81;
}

html.theme-soft-pop .music-release-meta {
  color: #6b5b8c;
}

html.theme-soft-pop
  .music-release-link:not(.music-release-link--apple):not(.music-release-link--spotify):not(.music-release-link--img) {
  background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
  color: #5b21b6;
  border-color: rgba(124, 58, 237, 0.22);
}

html.theme-soft-pop
  .music-release-link:not(.music-release-link--apple):not(.music-release-link--spotify):not(.music-release-link--img):hover {
  color: #4c1d95;
  box-shadow: 0 2px 12px rgba(91, 33, 182, 0.12);
}

html.theme-soft-pop .music-release-link-genius:hover {
  background: linear-gradient(145deg, #f472b6 0%, #db2777 100%);
  color: #fff;
}

html.theme-soft-pop .music-inline-player {
  background: linear-gradient(160deg, rgba(237, 233, 254, 0.98) 0%, rgba(250, 245, 255, 0.95) 100%);
  border-color: rgba(124, 58, 237, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

html.theme-soft-pop .music-player-tab {
  background: rgba(124, 58, 237, 0.08);
  color: #5b4d78;
}

html.theme-soft-pop .music-player-tab:hover {
  background: rgba(124, 58, 237, 0.14);
  color: #312e81;
}

html.theme-soft-pop .music-player-tab.active {
  background: rgba(124, 58, 237, 0.2);
  color: #312e81;
}

html.theme-soft-pop .music-release-modal,
html.theme-soft-pop .music-release-modal-backdrop {
  background: #f5f3ff;
}

html.theme-soft-pop .music-release-modal-close {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(124, 58, 237, 0.22);
  color: #5b21b6;
}

html.theme-soft-pop .music-release-modal-close:hover {
  background: #fff;
  color: #4c1d95;
}

html.theme-soft-pop .music-release-modal-artwork {
  background-color: #ede9fe;
}

html.theme-soft-pop .music-release-modal-artwork--placeholder {
  background: linear-gradient(160deg, #ede9fe 0%, #e9d5ff 50%, #ddd6fe 100%);
}

html.theme-soft-pop .music-release-modal-title {
  color: #312e81;
}

html.theme-soft-pop .music-release-modal-meta {
  color: #6b5b8c;
}

html.theme-soft-pop .music-release-modal-where-title {
  color: #6b5b8c;
}

html.theme-soft-pop .music-release-modal-player-slot {
  background: linear-gradient(160deg, rgba(250, 245, 255, 0.98) 0%, rgba(237, 233, 254, 0.96) 100%);
  border-color: rgba(124, 58, 237, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

html.theme-soft-pop .music-release-modal-no-embed-text {
  color: #6b5b8c;
}

html.theme-soft-pop .music-events-near-you {
  background: linear-gradient(155deg, rgba(237, 233, 254, 0.96) 0%, rgba(253, 242, 248, 0.92) 100%);
  border-color: rgba(219, 39, 119, 0.22);
  box-shadow: 0 4px 24px rgba(91, 33, 182, 0.08);
}

html.theme-soft-pop .music-events-near-you-title {
  color: #312e81;
}

html.theme-soft-pop .music-events-near-you-intro {
  color: #6b5b8c;
}

html.theme-soft-pop .music-tour-callout {
  background: linear-gradient(145deg, rgba(253, 242, 248, 0.95) 0%, rgba(237, 233, 254, 0.95) 100%);
  border-color: rgba(124, 58, 237, 0.22);
}

html.theme-soft-pop .tour-date-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 245, 255, 0.98) 100%);
  border-color: rgba(124, 58, 237, 0.16);
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

html.theme-soft-pop .tour-date-card-clickable:hover {
  border-color: rgba(236, 72, 153, 0.35);
  box-shadow: 0 6px 24px rgba(219, 39, 119, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html.theme-soft-pop .tour-date-event {
  color: #312e81;
}

html.theme-soft-pop .tour-date-date,
html.theme-soft-pop .tour-date-venue {
  color: #4338ca;
}

html.theme-soft-pop .tour-date-city {
  color: #6b5b8c;
}

html.theme-soft-pop .tour-date-distance {
  color: #7c6b9e;
}

html.theme-soft-pop .tour-date-expand-label {
  color: rgba(91, 33, 182, 0.45);
}

html.theme-soft-pop .music-instagram-card {
  border-color: rgba(124, 58, 237, 0.14);
  border-left-color: #db2777;
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.1), 0 1px 3px rgba(91, 33, 182, 0.06);
}

html.theme-soft-pop .music-instagram-embed {
  border-color: rgba(124, 58, 237, 0.14);
  border-left-color: #db2777;
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.1), 0 1px 3px rgba(91, 33, 182, 0.06);
}

html.theme-soft-pop .tour-detail-modal-inner {
  background: linear-gradient(160deg, #faf5ff 0%, #f5f3ff 100%);
  border-color: rgba(124, 58, 237, 0.16);
}

html.theme-soft-pop .tour-detail-modal-close {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(124, 58, 237, 0.2);
  color: #5b21b6;
}

html.theme-soft-pop .tour-detail-modal-close:hover {
  background: #fff;
  color: #4c1d95;
}

html.theme-soft-pop .tour-detail-title {
  color: #312e81;
}

html.theme-soft-pop .tour-detail-artist {
  color: #6b5b8c;
}

html.theme-soft-pop .tour-detail-date {
  color: #5b4d78;
}

html.theme-soft-pop .tour-detail-venue-block {
  background: rgba(237, 233, 254, 0.85);
  border-color: rgba(124, 58, 237, 0.12);
}

html.theme-soft-pop .tour-detail-venue-name {
  color: #312e81;
}

html.theme-soft-pop .tour-detail-venue-address {
  color: #5b4d78;
}

html.theme-soft-pop .tour-detail-tickets-title {
  color: #6b5b8c;
}

html.theme-soft-pop .music-tour-popover-inner {
  background: linear-gradient(160deg, #faf5ff 0%, #f5f3ff 100%);
  border-color: rgba(124, 58, 237, 0.18);
}

html.theme-soft-pop .music-tour-popover-heading {
  color: #312e81;
}

html.theme-soft-pop .music-tour-popover-text {
  color: #6b5b8c;
}

html.theme-soft-pop .music-tour-heading {
  color: #312e81;
}

html.theme-soft-pop .music-tour-text {
  color: #6b5b8c;
}

html.theme-soft-pop .music-tour-popover-location-btn {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.22);
  color: #312e81;
}

html.theme-soft-pop .music-tour-popover-location-btn:hover:not(:disabled) {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.3);
  color: #1e1b4b;
}

html.theme-soft-pop .music-quote-month-item {
  border-left-color: #db2777;
  background: rgba(255, 255, 255, 0.55);
}

/* Vault (profile.html) — soft pop: readable copy + soft pink CTAs (same border language as a.btn) */
html.theme-soft-pop .profile-landing {
  background: linear-gradient(180deg, #ede9fe 0%, #f5f3ff 55%, #faf5ff 100%);
}

html.theme-soft-pop .profile-landing-title {
  color: #5b21b6;
}

html.theme-soft-pop .profile-landing-tagline {
  color: #6d28d9;
  opacity: 0.88;
}

html.theme-soft-pop .profile-landing-welcome {
  color: #4338ca;
}

/* No black letterbox frame: hero sits on lavender like the rest of the page */
html.theme-soft-pop .profile-landing-hero {
  background: transparent;
  box-shadow: none;
  border: none;
}

html.theme-soft-pop .profile-landing-video {
  border: none;
  outline: none;
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.12);
}

html.theme-soft-pop .profile-section-desc {
  color: #5b4d8c;
}
html.theme-soft-pop #vault-main-section > .section-title.stretch-pro-title {
  color: rgba(107, 15, 255, 1);
}

html.theme-soft-pop .profile-content-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.38);
  box-shadow: 0 2px 14px rgba(91, 33, 182, 0.08);
}

html.theme-soft-pop .profile-content-card-label {
  color: #7c3aed;
}

html.theme-soft-pop .profile-unlock-icon {
  color: #16a34a;
  filter: drop-shadow(0 0 8px rgba(22, 163, 74, 0.35));
}

html.theme-soft-pop .profile-content-card--locked .profile-content-card-label {
  background: rgba(30, 27, 75, 0.94);
  border-color: rgba(76, 29, 149, 0.55);
  color: #f5f3ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 2px 10px rgba(49, 46, 129, 0.18);
}

html.theme-soft-pop .profile-content-card-title {
  color: #312e81;
}

html.theme-soft-pop .profile-content-card-task {
  color: #4c1d95;
}

html.theme-soft-pop .profile-content-card-content {
  color: #5b4d8c;
}

html.theme-soft-pop .profile-content-card-lock {
  color: rgba(91, 33, 182, 0.5);
}

html.theme-soft-pop .profile-content-card-cta {
  background: #fce7f3;
  color: #831843;
  border: 1px solid rgba(236, 72, 153, 0.4);
  box-shadow: 0 1px 4px rgba(219, 39, 119, 0.1);
}

html.theme-soft-pop .profile-content-card-cta:hover,
html.theme-soft-pop .profile-content-card-cta:focus-visible {
  background: #f9a8d4;
  color: #500724;
  border-color: rgba(219, 39, 119, 0.55);
  box-shadow: 0 2px 8px rgba(219, 39, 119, 0.14);
}

html.theme-soft-pop .profile-content-card-input {
  background: #fff;
  color: #312e81;
  border: 1px solid rgba(219, 39, 119, 0.38);
}

html.theme-soft-pop .profile-content-card-input::placeholder {
  color: rgba(91, 33, 182, 0.48);
}

html.theme-soft-pop .profile-content-card-input:focus {
  outline: none;
  border-color: rgba(219, 39, 119, 0.65);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.22);
}

html.theme-soft-pop .profile-link-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 58, 237, 0.38);
  color: #5b21b6;
}

html.theme-soft-pop .profile-link-card:hover {
  background: #fce7f3;
  border-color: rgba(219, 39, 119, 0.48);
  color: #831843;
}

html.theme-soft-pop .profile-content-card--placeholder {
  color: #6b5b8c;
}

html.theme-soft-pop .profile-vault-discount {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.38);
  box-shadow: 0 2px 14px rgba(91, 33, 182, 0.08);
}

html.theme-soft-pop .profile-vault-discount--locked .profile-vault-discount-lock {
  color: #6d28d9;
}

html.theme-soft-pop .profile-vault-discount--locked .profile-vault-discount-locked-head .profile-content-card-label {
  color: #7c3aed;
}

html.theme-soft-pop .profile-vault-discount-title {
  color: #312e81;
}

html.theme-soft-pop .profile-vault-discount-title--unlocked {
  color: #312e81;
}

html.theme-soft-pop .profile-vault-discount-desc,
html.theme-soft-pop .profile-vault-discount-success-msg {
  color: #5b4d8c;
}

html.theme-soft-pop .profile-vault-sms-desc,
html.theme-soft-pop .profile-vault-sms-success-msg,
html.theme-soft-pop .profile-vault-bts-unlocked-copy {
  color: #5b4d8c;
}

html.theme-soft-pop .profile-vault-sms-label {
  color: #6b5b8c;
}

html.theme-soft-pop .profile-vault-sms-consent-text {
  color: #5b4d8c;
}

html.theme-soft-pop .vault-bts-welcome-dialog {
  background: #faf5ff;
  color: #312e81;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 48px rgba(91, 33, 182, 0.18);
}
html.theme-soft-pop .vault-bts-welcome-body {
  color: #4338ca;
}
html.theme-soft-pop .vault-bts-welcome-title {
  color: #5b21b6;
}

html.theme-soft-pop .profile-vault-discount-code {
  color: #5b21b6;
}

/* Fan-mail blocks in Vault should match soft-pop card language */
html.theme-soft-pop .vault-fanmail-card,
html.theme-soft-pop .vault-fanmail-admin {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.38);
  box-shadow: 0 2px 14px rgba(91, 33, 182, 0.08);
}
html.theme-soft-pop .vault-fanmail-admin {
  background: linear-gradient(160deg, rgba(254, 202, 202, 0.98) 0%, rgba(254, 226, 226, 0.95) 100%);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow:
    0 6px 20px rgba(220, 38, 38, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
html.theme-soft-pop .vault-fanmail-title {
  color: #312e81;
}
html.theme-soft-pop .vault-fanmail-copy {
  color: #5b4d8c;
}
html.theme-soft-pop .vault-fanmail-label {
  color: #6b5b8c;
}
html.theme-soft-pop .vault-fanmail-featured-item,
html.theme-soft-pop .vault-fanmail-admin-item {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(124, 58, 237, 0.3);
}
html.theme-soft-pop .vault-fanmail-featured-name,
html.theme-soft-pop .vault-fanmail-admin-name {
  color: #312e81;
}
html.theme-soft-pop .vault-fanmail-featured-message,
html.theme-soft-pop .vault-fanmail-admin-message {
  color: #4c1d95;
}
html.theme-soft-pop .vault-fanmail-featured-date,
html.theme-soft-pop .vault-fanmail-admin-date {
  color: #6b5b8c;
}
html.theme-soft-pop .vault-fanmail-empty {
  border-color: rgba(124, 58, 237, 0.3);
  color: #6b5b8c;
  background: rgba(255, 255, 255, 0.6);
}
html.theme-soft-pop .vault-fanmail-admin-status {
  border-color: rgba(124, 58, 237, 0.28);
  color: #6b5b8c;
}
html.theme-soft-pop .vault-fanmail-admin-status--approved {
  border-color: rgba(34, 197, 94, 0.45);
  color: #166534;
  background: rgba(34, 197, 94, 0.08);
}
html.theme-soft-pop .vault-fanmail-admin-status--pending {
  border-color: rgba(234, 179, 8, 0.5);
  color: #854d0e;
  background: rgba(234, 179, 8, 0.08);
}
html.theme-soft-pop .vault-fanmail-admin-status--hidden {
  border-color: rgba(236, 72, 153, 0.45);
  color: #9d174d;
  background: rgba(236, 72, 153, 0.08);
}
html.theme-soft-pop .vault-fanmail-admin-select {
  color: #5b4d8c;
}
html.theme-soft-pop .vault-fanmail-password-dialog {
  background: #faf5ff;
  color: #312e81;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 48px rgba(91, 33, 182, 0.18);
}
html.theme-soft-pop .vault-fanmail-password-copy {
  color: #4338ca;
}
html.theme-soft-pop .vault-fanmail-password-error {
  color: #9d174d;
}
