:root {
  color-scheme: light;
  --paper: #f7f4ef;
  --pearl: #f7f4ef;
  --ivory: #e6dfd2;
  --sand: #c8bca8;
  --champagne: #c8a966;
  --brass: #c8a966;
  --ink: #1a1a1a;
  --charcoal: #1a1a1a;
  --smoke: #7d756b;
  --teal: #17393d;
  --sea: #54747b;
  --seaglass: #d8e2df;
  --line: rgba(26, 26, 26, 0.15);
  --white-line: rgba(255, 253, 248, 0.22);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", Arial, Helvetica, sans-serif;
  --shadow: 0 22px 60px rgba(26, 26, 26, 0.16);
}

@property --commerce-glow {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --commerce-selected {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --commerce-current {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --commerce-tide-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 112deg;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  scroll-padding-top: 78px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.86), rgba(247, 244, 239, 0.94)),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 72%);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 10px 6.5vw;
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: rgba(247, 244, 239, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 50%;
}

.brand-monogram {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 500;
  line-height: 0.86;
}

.brand-monogram span {
  font-size: 0.62em;
  transform: translateY(0.08em);
}

.brand-type {
  display: grid;
  gap: 0;
  min-width: 112px;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-type span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--smoke);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 500;
  text-align: center;
}

.brand-type span:last-child::before,
.brand-type span:last-child::after {
  display: block;
  width: 24px;
  height: 1px;
  content: "";
  background: rgba(125, 117, 107, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.site-nav a,
.header-action,
.button,
.brand-panel a,
.footer-links a {
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a {
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brass);
}

.header-action {
  justify-self: end;
  min-width: 148px;
  padding: 12px 20px;
  color: var(--charcoal);
  border: 1px solid var(--brass);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.header-action:hover,
.header-action:focus-visible {
  color: var(--ink);
  background: var(--brass);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  min-height: 500px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.94) 36%, rgba(247, 244, 239, 0.28) 65%, rgba(247, 244, 239, 0.03) 100%),
    url("/assets/salt-silk-hero.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 1px;
  content: "";
  background: var(--white-line);
}

.hero-media {
  min-height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 100%;
  max-width: 660px;
  padding: 72px 0 70px 11vw;
}

.eyebrow {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 4.7rem;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-question {
  position: relative;
  margin-top: 28px;
  padding-top: 18px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-style: italic;
  line-height: 1.05;
}

.hero-question::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 2px;
  content: "";
  background: var(--brass);
}

.lede {
  max-width: 500px;
  margin-top: 20px;
  color: #3f413d;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button-primary {
  min-width: 194px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--brass), var(--champagne));
  box-shadow: var(--shadow);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--charcoal);
  border-color: transparent;
}

.button-secondary::after {
  margin-left: 12px;
  content: "->";
  color: var(--brass);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--brass);
}

.light-link {
  color: var(--pearl);
}

.light-link:hover,
.light-link:focus-visible {
  color: var(--champagne);
}

.brand-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 274px;
}

.brand-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 274px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.brand-panel::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-position: center;
  background-size: cover;
  transition: transform 700ms ease;
}

.brand-panel::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
}

.brand-panel:hover::before {
  transform: scale(1.025);
}

.siren-panel {
  color: var(--pearl);
  background: var(--teal);
}

.siren-panel::before {
  background-image: url("/assets/siren-silk.jpg");
  background-position: right center;
}

.siren-panel::after {
  background:
    linear-gradient(90deg, rgba(10, 31, 34, 0.96) 0%, rgba(10, 31, 34, 0.75) 42%, rgba(10, 31, 34, 0.08) 100%);
}

.angel-panel {
  color: var(--charcoal);
  background: var(--ivory);
}

.angel-panel::before {
  background-image: url("/assets/angel-silk.jpg");
  background-position: right center;
}

.angel-panel::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.82) 47%, rgba(255, 253, 248, 0.1) 100%);
}

.panel-copy {
  width: min(360px, calc(100% - 56px));
  margin-left: 7.5vw;
  padding: 34px 0;
}

.angel-panel .panel-copy {
  margin-left: 7vw;
}

.mini-mark {
  display: block;
  width: 42px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--champagne);
}

.sun-mark {
  position: relative;
  border-bottom: 1px solid currentColor;
}

.sun-mark::before {
  position: absolute;
  left: 6px;
  bottom: 4px;
  width: 22px;
  height: 22px;
  content: "";
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.shell-mark {
  position: relative;
  width: 34px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 8px 8px;
}

.shell-mark::before,
.shell-mark::after {
  position: absolute;
  top: 3px;
  bottom: 4px;
  content: "";
  border-left: 1px solid currentColor;
}

.shell-mark::before {
  left: 11px;
  transform: rotate(-14deg);
}

.shell-mark::after {
  right: 11px;
  transform: rotate(14deg);
}

.brand-panel h2 {
  font-family: var(--serif);
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.panel-kicker {
  position: relative;
  margin-top: 8px;
  padding-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.panel-kicker::after {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--champagne);
}

.brand-panel p:not(.panel-kicker) {
  max-width: 250px;
  font-size: 0.94rem;
}

.brand-panel a {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-panel a::after {
  margin-left: 15px;
  content: "->";
  color: var(--champagne);
}

.brand-panel a:hover,
.brand-panel a:focus-visible {
  color: var(--champagne);
}

.status-section {
  padding: 20px 6.5vw 28px;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin-bottom: 18px;
  text-align: center;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.status-item {
  min-height: 132px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.status-item:first-child {
  border-left: 0;
}

.status-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 10px;
  color: var(--brass);
  border: 1px solid rgba(200, 169, 102, 0.32);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
}

.status-item h3,
.pillars-section h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-label {
  margin-top: 4px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.2;
}

.status-item p:last-child {
  margin-top: 8px;
  color: #4c4a45;
  font-size: 0.78rem;
  line-height: 1.35;
}

.path-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  padding: 54px 6.5vw;
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.72)),
    url("/assets/salt-silk-hero.png") center / cover no-repeat;
  color: var(--pearl);
  border-bottom: 1px solid var(--line);
}

.path-intro {
  max-width: 470px;
}

.path-intro h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.02;
}

.path-intro p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.78);
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  align-self: stretch;
  background: rgba(255, 253, 248, 0.18);
}

.path-steps article {
  min-height: 230px;
  padding: 26px 20px;
  background: rgba(26, 26, 26, 0.3);
}

.path-steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--champagne);
  border: 1px solid rgba(200, 169, 102, 0.46);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
}

.path-steps h3 {
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.path-steps p {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.86rem;
  line-height: 1.48;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 0.78fr 1.1fr;
  gap: 54px;
  align-items: center;
  padding: 58px 6.5vw;
  border-bottom: 1px solid var(--line);
}

.about-logo {
  display: grid;
  justify-items: center;
  text-align: center;
}

.primary-monogram {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--serif);
  line-height: 0.8;
}

.monogram-letter {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 500;
  line-height: 0.8;
}

.monogram-amp {
  font-family: var(--serif);
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 0.8;
  transform: translateY(0.18em);
}

.about-logo strong {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.about-logo em {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
  color: var(--smoke);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: normal;
  text-transform: uppercase;
}

.about-logo em::before,
.about-logo em::after {
  display: block;
  width: 82px;
  height: 1px;
  content: "";
  background: rgba(125, 117, 107, 0.72);
}

.about-logo p {
  margin-top: 34px;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
}

.about-copy {
  max-width: 430px;
}

.about-copy h2,
.vision-copy h2,
.waitlist-card h2,
.journal-strip h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.08;
}

.about-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: #3f413d;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 54px;
  padding: 56px 6.5vw;
  background: var(--pearl);
  border-bottom: 1px solid var(--line);
}

.founder-note {
  max-width: 720px;
}

.founder-note h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.05;
}

.founder-note p:not(.eyebrow),
.standards-note li {
  color: #4c4a45;
}

.founder-note p:not(.eyebrow) {
  margin-top: 18px;
}

.standards-note {
  padding: 28px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.standards-note ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.standards-note li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
}

.standards-note li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--brass);
}

.mood-board {
  margin: 0;
}

.mood-board img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.mood-board figcaption {
  margin-top: 16px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pillars-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 6.5vw 56px;
  background: linear-gradient(180deg, transparent 0, transparent 20px, rgba(26, 26, 26, 0.11) 20px, rgba(26, 26, 26, 0.11) 21px, transparent 21px);
}

.pillars-section article {
  min-height: 138px;
  padding: 34px 24px 26px 0;
}

.pillars-section p {
  max-width: 260px;
  margin-top: 9px;
  color: #4c4a45;
  font-size: 0.88rem;
}

.vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 290px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.9) 56%, rgba(255, 253, 248, 0.28)),
    url("/assets/waitlist-shell.jpg") right center / auto 100% no-repeat,
    var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vision-copy,
.waitlist-card {
  padding: 48px 6.5vw;
}

.vision-copy {
  border-right: 1px solid var(--line);
}

.vision-copy h2 {
  max-width: 650px;
}

.vision-copy > p:not(.eyebrow, .script-line) {
  margin-top: 18px;
  color: #4c4a45;
}

.script-line {
  margin-top: 8px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
}

.waitlist-card {
  max-width: 640px;
}

.waitlist-card p:not(.eyebrow) {
  margin-top: 14px;
  color: #4c4a45;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(150px, 0.72fr) auto;
  gap: 0;
  margin-top: 24px;
}

.spirit-field {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.spirit-field legend {
  width: 100%;
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.spirit-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.18);
  cursor: pointer;
}

.spirit-field input,
.consent-check input {
  accent-color: var(--brass);
}

.spirit-field span,
.consent-check,
.form-note,
.form-status {
  font-size: 0.76rem;
}

.waitlist-form > input[type="email"],
.waitlist-form select,
.waitlist-form button {
  min-height: 50px;
  border-radius: 0;
  font: inherit;
}

.waitlist-form > input[type="email"],
.waitlist-form select {
  width: 100%;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-right: 0;
}

.waitlist-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.waitlist-card input::placeholder {
  color: rgba(26, 26, 26, 0.5);
}

.waitlist-form button {
  padding: 0 28px;
  color: var(--ink);
  background: var(--brass);
  border: 1px solid var(--brass);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  color: var(--pearl);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.consent-check,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  color: #4c4a45;
}

.consent-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.form-note {
  margin-top: 8px;
  color: rgba(26, 26, 26, 0.56);
}

.form-note a {
  color: var(--brass);
}

.form-status {
  min-height: 1.3em;
  margin-top: 10px;
  color: var(--smoke);
  font-weight: 500;
}

.form-status[data-tone="success"] {
  color: var(--teal);
}

.form-status[data-tone="error"] {
  color: #8b3f2f;
}

.application-page {
  background: var(--paper);
}

.application-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding: clamp(42px, 6vw, 78px) 7vw;
}

.application-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: 0 7vw clamp(46px, 7vw, 86px);
}

.application-copy {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 22px;
  max-width: 620px;
}

.application-copy h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 500;
  line-height: 0.9;
  overflow-wrap: normal;
  word-break: normal;
}

.application-image {
  margin: 6px 0 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.application-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.application-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 50px rgba(26, 26, 26, 0.08);
}

.application-consent,
.application-legal {
  color: var(--smoke);
  font-size: 0.86rem;
  line-height: 1.6;
}

.application-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.application-consent input {
  margin-top: 3px;
}

.application-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.application-language-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.application-language-card .application-note {
  margin: 4px 0 0;
}

.application-language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  min-width: 188px;
  padding: 4px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  background: rgba(255, 253, 248, 0.82);
}

.application-language-toggle label {
  position: relative;
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.application-language-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.application-language-toggle span {
  display: grid;
  min-height: 36px;
  place-items: center;
  padding: 0 12px;
  color: var(--smoke);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.application-language-toggle input:checked + span {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 16px rgba(26, 26, 26, 0.12);
}

.application-language-toggle input:focus-visible + span {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.application-form fieldset {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.application-form legend {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.05;
}

.application-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: 400 0.95rem / 1.45 var(--sans);
  text-transform: none;
}

.application-form textarea {
  min-height: 118px;
  padding-block: 12px;
  resize: vertical;
}

.application-form input[type="file"] {
  min-height: 0;
  padding: 12px;
  cursor: pointer;
}

.application-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4c4a45;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: uppercase;
}

.application-form .consent-check input {
  flex: 0 0 16px;
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--brass);
}

.application-choice-group {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.application-mini-label {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.application-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.application-choice-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-form .application-choice {
  position: relative;
  display: block;
  min-width: 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.application-form .application-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.application-choice span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.application-choice input:checked + span {
  border-color: var(--ink);
  background: rgba(177, 139, 88, 0.18);
  box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.08);
}

.application-choice input:focus-visible + span {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.application-social-section {
  display: grid;
  gap: 14px;
  min-width: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}

.application-location-autocomplete {
  display: block;
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  color-scheme: light;
  font: 400 0.95rem / 1.45 var(--sans);
}

.application-location-autocomplete::part(input) {
  min-height: 46px;
  padding: 0 13px;
}

.application-location-autocomplete::part(prediction-list) {
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
}

.pac-container {
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
  font-family: var(--sans);
  z-index: 10000;
}

.application-media-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin: -2px 0 0;
  padding: 0;
  color: var(--smoke);
  font-size: 0.78rem;
  line-height: 1.45;
  list-style: none;
}

.application-media-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

.application-media-preview {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: rgba(255, 253, 248, 0.78);
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.application-media-preview img,
.application-media-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-media-meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.application-media-meta strong,
.application-media-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.application-media-meta strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.application-media-remove {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(143, 61, 52, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #8f3d34;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.application-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.application-measurement-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.measurement-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.measurement-label-row > label {
  min-width: 0;
}

.measurement-info {
  position: relative;
  flex: 0 0 auto;
}

.measurement-info summary {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(177, 139, 88, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.22) 42%, transparent 60%),
    rgba(177, 139, 88, 0.14);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  list-style: none;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.measurement-info summary::-webkit-details-marker {
  display: none;
}

.measurement-info summary:hover,
.measurement-info summary:focus-visible {
  border-color: var(--ink);
  background: rgba(177, 139, 88, 0.22);
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.measurement-info[open] summary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.measurement-info-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  gap: 6px;
  width: min(330px, calc(100vw - 48px));
  padding: 13px 14px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 42px rgba(26, 26, 26, 0.16);
  color: var(--smoke);
  text-transform: none;
}

.measurement-info-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  border-left: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 253, 248, 0.98);
  transform: rotate(45deg);
}

.measurement-info-panel strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}

.measurement-info-panel p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

@media (max-width: 520px) {
  .measurement-info-panel {
    right: -6px;
    width: min(292px, calc(100vw - 36px));
  }

  .measurement-info-panel::before {
    right: 14px;
  }
}

.application-note,
.application-form .form-note,
.application-form .form-status {
  color: var(--smoke);
  font-size: 0.82rem;
  line-height: 1.65;
}

.application-form .form-status {
  min-height: 1.4em;
}

.application-form .form-status[data-tone="success"] {
  color: #4d7554;
}

.application-form .form-status[data-tone="error"] {
  color: #8f3d34;
}

.application-form button[type="submit"] {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.application-form button[type="submit"]:hover,
.application-form button[type="submit"]:focus-visible {
  background: var(--brass);
  color: var(--ink);
}

.application-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.62;
}

.application-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: 64px 7vw 86px;
  border-top: 1px solid var(--line);
  background: rgba(230, 223, 210, 0.28);
}

.application-process h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
}

.application-process p {
  max-width: 640px;
  margin-top: 12px;
  color: var(--smoke);
}

.application-scorecard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.application-scorecard span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.journal-strip {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 36px 6.5vw;
  background: var(--charcoal);
  color: var(--pearl);
}

.journal-strip img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.journal-strip h2 {
  max-width: 760px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 24px 6.5vw;
  color: var(--charcoal);
  background: var(--pearl);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a,
.site-footer p {
  color: #4c4a45;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brass);
}

.site-footer p {
  justify-self: end;
}

.commerce-group-shop-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 14% 0%, rgba(200, 169, 102, 0.12), transparent 32rem),
    radial-gradient(circle at 86% 4%, rgba(216, 226, 223, 0.1), transparent 34rem),
    linear-gradient(180deg, #1b1a18 0%, #141312 100%);
}

.commerce-group-shop-page .site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: minmax(0, auto) minmax(0, auto);
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 72px);
  padding: 14px 6.5vw 16px;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.05), rgba(255, 253, 248, 0)),
    #191817;
  color: var(--pearl);
  box-shadow: 0 -28px 84px rgba(0, 0, 0, 0.22);
}

.commerce-group-shop-page .site-footer::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(25, 24, 23, 0.94) 0 22%, rgba(25, 24, 23, 0.68) 46%, rgba(25, 24, 23, 0.94) 78% 100%),
    url("/assets/shop/siren-jersey-friends-boardwalk-baseline-20260604.jpg") left 44% / 40% 190% no-repeat,
    url("/assets/shop/angel-jersey-friends-dunes.jpg") right 44% / 40% 190% no-repeat;
  opacity: 0.48;
  filter: saturate(0.9) contrast(1.05);
}

.commerce-group-shop-page .site-footer::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(200, 169, 102, 0.26), rgba(216, 226, 223, 0.2), transparent) top / 100% 1px no-repeat,
    radial-gradient(circle at 50% 0%, rgba(255, 253, 248, 0.08), transparent 36%);
}

.commerce-group-shop-page .site-footer > * {
  position: relative;
  z-index: 1;
}

.commerce-group-footer-mark {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 10px;
  color: rgba(247, 244, 239, 0.9);
  text-decoration: none;
}

.commerce-group-footer-mark .shell-mark {
  flex: 0 0 auto;
  width: 27px;
  height: 24px;
  color: rgba(200, 169, 102, 0.9);
}

.commerce-group-shop-page .site-footer p,
.commerce-group-shop-page .footer-links a {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-group-shop-page .site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0;
  color: rgba(247, 244, 239, 0.9);
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.4vw, 1.18rem);
  line-height: 1;
}

.commerce-group-shop-page .footer-links {
  align-items: center;
  gap: 8px;
}

.commerce-group-shop-page .footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.commerce-group-shop-page .footer-links a:hover,
.commerce-group-shop-page .footer-links a:focus-visible {
  border-color: rgba(200, 169, 102, 0.42);
  color: var(--champagne);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .commerce-group-shop-page .site-footer {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 10px;
    padding-block: 14px 16px;
    padding-inline: 18px;
  }

  .commerce-group-footer-mark {
    min-height: 34px;
  }

  .commerce-group-shop-page .footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .commerce-group-shop-page .footer-links a {
    min-height: 36px;
    padding-inline: 8px;
    font-size: 0.6rem;
  }
}

.brand-domain-page {
  background: var(--paper);
}

.domain-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 32px 4vw;
}

.domain-header-dark {
  color: rgba(247, 244, 239, 0.94);
}

.domain-header-light {
  color: var(--ink);
}

.angel-domain-page .domain-header-light {
  background:
    linear-gradient(180deg, rgba(247, 244, 239, 0.88), rgba(247, 244, 239, 0.44) 58%, rgba(247, 244, 239, 0));
}

.domain-wordmark,
.domain-nav a,
.domain-header-action,
.domain-button,
.domain-stage,
.domain-kicker,
.domain-footer p {
  text-transform: uppercase;
  letter-spacing: 0;
}

.domain-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.domain-mark-image {
  width: 28px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.domain-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.domain-nav a {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
}

.brand-domain-page.commerce-shop-page .domain-header {
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  gap: 26px;
  padding-block: 24px;
}

.brand-domain-page.commerce-shop-page .domain-nav {
  gap: 30px;
}

.brand-domain-page.commerce-shop-page .domain-nav a {
  display: none;
}

.brand-domain-page.commerce-shop-page .domain-nav a[href="/fit-fabric"],
.brand-domain-page.commerce-shop-page .domain-nav a[href="/account"] {
  display: inline-flex;
}

.domain-header-action {
  justify-self: end;
  min-width: 176px;
  padding: 12px 18px;
  color: inherit;
  border: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.domain-wordmark:hover,
.domain-wordmark:focus-visible,
.domain-nav a:hover,
.domain-nav a:focus-visible,
.domain-header-action:hover,
.domain-header-action:focus-visible,
.domain-button:hover,
.domain-button:focus-visible {
  color: var(--champagne);
}

.domain-main {
  min-height: 100svh;
}

.commerce-header-cart-button {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 50px;
  min-height: 44px;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(200, 169, 102, 0.46);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.78);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  box-shadow:
    0 14px 34px rgba(26, 26, 26, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.72);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.commerce-header-cart-button[hidden] {
  display: none;
}

.commerce-header-cart-button:hover,
.commerce-header-cart-button:focus-visible {
  border-color: rgba(200, 169, 102, 0.72);
  box-shadow:
    0 16px 38px rgba(26, 26, 26, 0.16),
    0 0 0 4px rgba(200, 169, 102, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.76);
  transform: translateY(-1px);
}

.commerce-header-cart-button .commerce-icon {
  width: 17px;
  height: 17px;
  color: var(--brass);
}

.commerce-header-cart-button span {
  color: currentColor;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.commerce-header-cart-button strong {
  display: inline-grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--champagne);
  color: #071014;
  font: 900 0.64rem/1 var(--sans);
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.16);
}

.siren-domain-page .commerce-header-cart-button {
  border-color: rgba(214, 192, 142, 0.42);
  background:
    linear-gradient(145deg, rgba(247, 244, 239, 0.12), rgba(214, 192, 142, 0.1)),
    rgba(7, 16, 20, 0.78);
  color: var(--paper);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(247, 244, 239, 0.12);
}

.siren-domain-page .commerce-header-cart-button .commerce-icon {
  color: var(--champagne);
}

.site-header:has(.commerce-header-cart-button.is-visible) {
  grid-template-columns: minmax(190px, 1fr) auto auto minmax(160px, 1fr);
  gap: 18px;
}

.site-header:has(.commerce-header-cart-button.is-visible) .brand {
  grid-column: 1;
}

.site-header:has(.commerce-header-cart-button.is-visible) .site-nav {
  grid-column: 2;
}

.site-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button {
  grid-column: 3;
}

.site-header:has(.commerce-header-cart-button.is-visible) .header-action {
  grid-column: 4;
}

.domain-header:has(.commerce-header-cart-button.is-visible) {
  grid-template-columns: minmax(190px, 1fr) auto auto minmax(190px, 1fr);
  gap: 20px;
}

.domain-header:has(.commerce-header-cart-button.is-visible) .domain-wordmark {
  grid-column: 1;
}

.domain-header:has(.commerce-header-cart-button.is-visible) .domain-nav {
  grid-column: 2;
}

.domain-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button {
  grid-column: 3;
}

.domain-header:has(.commerce-header-cart-button.is-visible) .domain-header-action {
  grid-column: 4;
}

.domain-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(820px, 88svh);
  align-items: center;
  overflow: hidden;
  padding: 128px 7.8vw 84px;
}

.domain-hero::before,
.domain-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.domain-hero::before {
  z-index: -2;
  background-repeat: no-repeat;
  background-size: cover;
}

.domain-hero::after {
  z-index: -1;
}

.siren-domain-hero {
  color: var(--paper);
  background: #071014;
}

.siren-domain-hero::before {
  background-image: url("/assets/siren-domain-hero.jpg");
  background-position: right center;
}

.siren-domain-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.98) 0%, rgba(7, 16, 20, 0.94) 34%, rgba(7, 16, 20, 0.54) 62%, rgba(7, 16, 20, 0.16) 100%),
    linear-gradient(180deg, rgba(7, 16, 20, 0.62), rgba(7, 16, 20, 0.22) 46%, rgba(7, 16, 20, 0.68));
}

.angel-domain-hero {
  color: var(--smoke);
  background: var(--paper);
}

.angel-domain-hero::before {
  background-image: url("/assets/angel-domain-hero.jpg");
  background-position: right center;
}

.angel-domain-hero::after {
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 1) 0%, rgba(247, 244, 239, 0.94) 33%, rgba(247, 244, 239, 0.48) 58%, rgba(247, 244, 239, 0.08) 100%),
    linear-gradient(180deg, rgba(247, 244, 239, 0.3), rgba(216, 226, 223, 0.08) 56%, rgba(247, 244, 239, 0.5));
}

.domain-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(520px, 44vw);
  justify-items: center;
  text-align: center;
}

.domain-hero h1 {
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 7.4rem);
  font-weight: 500;
  line-height: 0.92;
  text-transform: uppercase;
}

.siren-logo-heading {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  overflow: visible;
  white-space: nowrap;
}

.siren-logo-hyphen {
  position: relative;
  display: inline-block;
  flex: 0 0 0.30em;
  width: 0.30em;
  text-align: center;
}

.siren-hyphen-mark {
  position: absolute;
  left: 50%;
  bottom: 0.58em;
  width: clamp(56px, 0.82em, 100px);
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.siren-logo-heading + .domain-kicker {
  margin-top: 48px;
}

.angel-logo-heading {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  overflow: visible;
  white-space: nowrap;
}

.angel-logo-hyphen {
  position: relative;
  display: inline-block;
  flex: 0 0 1em;
  width: 1em;
  text-align: center;
}

.angel-hyphen-mark {
  position: absolute;
  left: 50%;
  bottom: 0.55em;
  width: clamp(48px, 0.58em, 86px);
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.angel-logo-heading + .domain-kicker {
  margin-top: 50px;
}

.angel-domain-hero h1 {
  color: #b89668;
}

.angel-domain-page .domain-hero-copy {
  width: min(660px, 54vw);
}

.domain-symbol {
  margin-top: 30px;
  margin-bottom: 28px;
  color: var(--champagne);
}

.domain-symbol.shell-mark {
  width: 54px;
  height: 46px;
}

.domain-symbol.shell-mark::before,
.domain-symbol.shell-mark::after {
  top: 5px;
  bottom: 5px;
}

.domain-symbol.shell-mark::before {
  left: 17px;
}

.domain-symbol.shell-mark::after {
  right: 17px;
}

.domain-symbol.sun-mark {
  width: 62px;
  height: 40px;
}

.domain-symbol.sun-mark::before {
  left: 17px;
  width: 28px;
  height: 28px;
}

.domain-kicker {
  color: inherit;
  font-size: 1.12rem;
  font-weight: 500;
}

.domain-line {
  width: 76px;
  height: 1px;
  margin-top: 26px;
  margin-bottom: 22px;
  background: var(--champagne);
}

.domain-line-short {
  width: 42px;
  margin-top: 30px;
  margin-bottom: 26px;
}

.domain-copy {
  color: currentColor;
  font-size: 1.02rem;
  line-height: 1.75;
}

.domain-stage {
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 600;
}

.domain-state {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.domain-button {
  display: inline-flex;
  min-width: 238px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 13px 28px;
  color: inherit;
  border: 1px solid var(--champagne);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.angel-domain-page .domain-button {
  color: #a78358;
}

.domain-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 62px 18px 70px;
  color: var(--smoke);
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 0.95), rgba(230, 223, 210, 0.74)),
    var(--ivory);
  text-align: center;
}

.domain-footer-symbol.shell-mark {
  width: 32px;
  height: 28px;
  color: var(--champagne);
}

.domain-footer-brand {
  margin-top: 2px;
  color: var(--smoke);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.domain-footer p:not(.domain-footer-brand) {
  font-size: 0.72rem;
  font-weight: 500;
}

.domain-section,
.domain-status-band,
.domain-waitlist-section {
  border-bottom: 1px solid var(--line);
}

.domain-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
  padding: 68px 7.8vw;
  background: var(--pearl);
}

.siren-domain-page .domain-section {
  background: #10191c;
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.14);
}

.angel-domain-page .domain-section {
  background: var(--pearl);
}

.angel-capsule-section {
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 0.98), rgba(216, 226, 223, 0.5)),
    var(--pearl);
}

.angel-capsule-layout {
  align-items: stretch;
}

.angel-capsule-visual img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.angel-veil-cards {
  grid-template-columns: 1fr;
}

.angel-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.angel-swatch {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 253, 248, 0.54);
}

.angel-swatch-ivory {
  background: #fffaf0;
}

.angel-swatch-pearl {
  background: #f7f4ef;
}

.angel-swatch-sand {
  background: #c8bca8;
}

.angel-swatch-seaglass {
  background: var(--seaglass);
}

.angel-swatch-gold {
  background: var(--champagne);
}

.domain-section-copy {
  min-width: 0;
  max-width: 720px;
}

.domain-section > *,
.domain-status-band > *,
.domain-waitlist-section > *,
.domain-card-grid > *,
.domain-steps > *,
.domain-faq-list > * {
  min-width: 0;
}

.domain-section-copy h2,
.domain-status-band h2,
.domain-waitlist-copy h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.04;
}

.domain-section-copy p:not(.eyebrow),
.domain-note p:not(.eyebrow),
.domain-waitlist-copy p,
.domain-card-grid p,
.domain-steps p,
.domain-faq-list p {
  color: #4c4a45;
}

.siren-domain-page .domain-section-copy p:not(.eyebrow),
.siren-domain-page .domain-note p:not(.eyebrow),
.siren-domain-page .domain-card-grid p,
.siren-domain-page .domain-steps p,
.siren-domain-page .domain-faq-list p,
.siren-domain-page .domain-waitlist-copy p {
  color: rgba(247, 244, 239, 0.74);
}

.domain-section-copy p:not(.eyebrow),
.domain-note p:not(.eyebrow) {
  margin-top: 18px;
}

.domain-note {
  align-self: stretch;
  padding: 30px;
  background: rgba(230, 223, 210, 0.58);
  border: 1px solid var(--line);
}

.siren-domain-page .domain-note {
  background: rgba(247, 244, 239, 0.06);
  border-color: rgba(247, 244, 239, 0.16);
}

.domain-stacked {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.domain-visual {
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.siren-domain-page .domain-visual {
  background: rgba(247, 244, 239, 0.06);
  border-color: rgba(247, 244, 239, 0.16);
}

.domain-visual img {
  display: block;
  width: 100%;
  min-height: 280px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.domain-visual figcaption {
  padding: 14px 18px;
  color: #625f59;
  font-size: 0.78rem;
  line-height: 1.6;
}

.siren-domain-page .domain-visual figcaption {
  color: rgba(247, 244, 239, 0.72);
}

.domain-direction {
  grid-template-columns: 0.7fr 1.3fr;
}

.domain-card-grid,
.domain-steps,
.domain-faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.siren-domain-page .domain-card-grid,
.siren-domain-page .domain-steps,
.siren-domain-page .domain-faq-list {
  background: rgba(247, 244, 239, 0.16);
}

.domain-card-grid article,
.domain-steps article,
.domain-faq-list article {
  min-height: 186px;
  padding: 28px;
  background: var(--ivory);
}

.siren-domain-page .domain-card-grid article,
.siren-domain-page .domain-steps article,
.siren-domain-page .domain-faq-list article {
  background: rgba(7, 16, 20, 0.58);
}

.domain-card-grid h3,
.domain-steps h3,
.domain-faq-list h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.domain-card-grid p,
.domain-steps p,
.domain-faq-list p {
  margin-top: 12px;
  font-size: 0.9rem;
}

.domain-status-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 48px;
  align-items: stretch;
  padding: 62px 7.8vw;
}

.siren-domain-page .domain-status-band {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.96), rgba(7, 16, 20, 0.78)),
    url("/assets/siren-domain-hero.jpg") right center / cover no-repeat;
  border-color: rgba(247, 244, 239, 0.14);
}

.angel-domain-page .domain-status-band {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 239, 0.82)),
    url("/assets/angel-domain-hero.jpg") right center / cover no-repeat;
}

.domain-steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--champagne);
  border: 1px solid rgba(200, 169, 102, 0.46);
  border-radius: 50%;
  font-family: var(--serif);
}

.domain-waitlist-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
  padding: 62px 7.8vw;
  background: var(--ivory);
}

.siren-domain-page .domain-waitlist-section {
  color: var(--paper);
  background: #071014;
  border-color: rgba(247, 244, 239, 0.14);
}

.domain-waitlist-copy {
  max-width: 620px;
}

.domain-waitlist-copy p:not(.eyebrow) {
  margin-top: 16px;
}

.domain-waitlist-form {
  grid-template-columns: minmax(220px, 1fr) auto;
  max-width: 680px;
  margin-top: 0;
}

.domain-waitlist-form > input[type="email"] {
  border-right: 0;
}

.domain-waitlist-form .consent-check,
.domain-waitlist-form .form-note,
.domain-waitlist-form .form-status {
  grid-column: 1 / -1;
}

.siren-domain-page .domain-waitlist-form > input[type="email"] {
  color: var(--paper);
  background: rgba(247, 244, 239, 0.08);
  border-color: rgba(247, 244, 239, 0.24);
}

.siren-domain-page .domain-waitlist-form > input[type="email"]::placeholder,
.siren-domain-page .domain-waitlist-form .consent-check,
.siren-domain-page .domain-waitlist-form .form-note {
  color: rgba(247, 244, 239, 0.68);
}

.siren-domain-page .domain-waitlist-form button:hover,
.siren-domain-page .domain-waitlist-form button:focus-visible {
  color: var(--ink);
  background: var(--pearl);
  border-color: var(--pearl);
}

.siren-domain-page .domain-waitlist-form .form-status[data-tone="success"] {
  color: var(--champagne);
}

.domain-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.domain-footer-links a {
  color: inherit;
  text-decoration: none;
}

.domain-footer-links a:hover,
.domain-footer-links a:focus-visible {
  color: var(--champagne);
}

.brand-domain-page.commerce-shop-page .domain-footer {
  --domain-footer-visual-height: clamp(104px, 8vw, 112px);

  position: relative;
  gap: 5px;
  overflow: hidden;
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  isolation: isolate;
}

.brand-domain-page.commerce-shop-page .domain-footer::before {
  display: block;
  width: min(980px, calc(100vw - 36px));
  height: var(--domain-footer-visual-height);
  margin-bottom: 3px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 52px rgba(26, 26, 26, 0.14);
  content: "";
}

.brand-domain-page.commerce-shop-page .domain-footer::after {
  position: absolute;
  top: 14px;
  left: 50%;
  width: min(980px, calc(100vw - 36px));
  height: var(--domain-footer-visual-height);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.14),
    inset 0 -48px 58px rgba(26, 26, 26, 0.28);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.siren-domain-page.commerce-shop-page .domain-footer {
  color: rgba(247, 244, 239, 0.78);
  border-top-color: rgba(247, 244, 239, 0.12);
  background:
    linear-gradient(180deg, rgba(0, 8, 10, 0.98), rgba(4, 15, 18, 0.96)),
    #050d10;
}

.siren-domain-page.commerce-shop-page .domain-footer::before {
  border-color: rgba(247, 244, 239, 0.18);
  background-image:
    linear-gradient(180deg, rgba(2, 9, 12, 0.04), rgba(2, 9, 12, 0.66)),
    url("/assets/shop/siren-jersey-friends-boardwalk-baseline-20260604.jpg");
  background-position: center 42%;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.32);
}

.angel-domain-page.commerce-shop-page .domain-footer::before {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 248, 0.02), rgba(255, 253, 248, 0.5)),
    url("/assets/shop/angel-jersey-friends-dunes.jpg");
  background-position: center 44%;
}

.angel-domain-page.commerce-shop-page .domain-footer::after {
  border-color: rgba(255, 253, 248, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.38),
    inset 0 -42px 58px rgba(255, 253, 248, 0.32);
}

.brand-domain-page.commerce-shop-page .domain-footer .domain-footer-brand {
  margin: 0;
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
}

.siren-domain-page.commerce-shop-page .domain-footer .domain-footer-brand {
  color: var(--paper);
}

.brand-domain-page.commerce-shop-page .domain-footer p:not(.domain-footer-brand):not(.domain-footer-links) {
  display: none;
}

.brand-domain-page.commerce-shop-page .domain-footer-links {
  gap: 12px;
  font-size: 0.62rem;
}

.brand-domain-page.commerce-shop-page .domain-footer-symbol.shell-mark {
  width: 26px;
  height: 23px;
}

.domain-text-link {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.domain-text-link:hover,
.domain-text-link:focus-visible {
  color: var(--champagne);
}

.brand-detail-hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 80px 6.5vw;
  background: var(--charcoal);
  color: var(--pearl);
  border-bottom: 1px solid var(--line);
}

.brand-detail-hero > div {
  width: 100%;
  max-width: 720px;
}

.brand-detail-hero h1,
.legal-page h1 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
}

.brand-detail-hero .lede {
  color: rgba(255, 253, 248, 0.84);
}

.siren-detail,
.siren-detail-hero {
  background:
    linear-gradient(90deg, rgba(8, 28, 31, 0.96), rgba(8, 28, 31, 0.82) 44%, rgba(8, 28, 31, 0.2)),
    url("/assets/siren-domain-hero.jpg") right center / cover no-repeat;
}

.angel-detail,
.angel-detail-hero {
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.82) 48%, rgba(255, 253, 248, 0.12)),
    url("/assets/angel-domain-hero.jpg") right center / cover no-repeat;
}

.angel-detail .lede,
.angel-detail-hero .lede {
  color: #3f413d;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  padding: 58px 6.5vw;
  background: var(--pearl);
  border-bottom: 1px solid var(--line);
}

.detail-copy h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.05;
}

.detail-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: #4c4a45;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.detail-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--ivory);
}

.detail-grid h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-grid p {
  margin-top: 12px;
  color: #4c4a45;
  font-size: 0.9rem;
}

.brand-house-page {
  color: var(--ink);
  background: var(--paper);
}

.brand-house-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.56fr);
  gap: 44px;
  align-items: end;
  min-height: 590px;
  padding: 92px 6.5vw 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.95) 44%, rgba(247, 244, 239, 0.62) 66%, rgba(7, 16, 20, 0.28) 100%),
    url("/assets/siren-domain-hero.jpg") right top / 43% 55% no-repeat,
    url("/assets/angel-domain-hero.jpg") right bottom / 43% 55% no-repeat,
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand-house-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 74%);
}

.brand-house-hero-copy {
  max-width: 720px;
}

.brand-house-hero h1 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 0.9;
}

.brand-house-hero .lede {
  max-width: 620px;
  margin-top: 24px;
  color: #3f413d;
  font-size: 1rem;
}

.brand-house-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.brand-house-signals {
  display: grid;
  gap: 1px;
  align-self: end;
  background: rgba(26, 26, 26, 0.16);
  border: 1px solid rgba(255, 253, 248, 0.42);
  box-shadow: 0 22px 60px rgba(26, 26, 26, 0.12);
}

.brand-house-signals div {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(12px);
}

.brand-house-signals span,
.brand-stage,
.brand-signal-list dt,
.brand-choice-grid span {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-house-signals strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.brand-house-signals p {
  color: #4c4a45;
  font-size: 0.86rem;
}

.brand-worlds-section,
.brand-choice-section,
.brand-house-cta {
  padding: 72px 6.5vw;
  border-bottom: 1px solid var(--line);
}

.brand-worlds-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(247, 244, 239, 0.96)),
    var(--paper);
}

.brand-house-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.brand-house-heading h2,
.brand-choice-copy h2,
.brand-house-cta h2 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.brand-house-heading p:not(.eyebrow),
.brand-choice-copy p,
.brand-house-cta p {
  margin-top: 16px;
  color: #4c4a45;
}

.brand-world-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.brand-world-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(26, 26, 26, 0.08);
}

.brand-world-card figure {
  position: relative;
  min-height: 318px;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
}

.brand-world-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.brand-world-card:hover img,
.brand-world-card:focus-within img {
  transform: scale(1.025);
}

.brand-world-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.brand-world-body {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 32px;
}

.brand-world-card h3 {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 0.92;
}

.brand-tagline {
  margin-top: -4px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.12;
}

.brand-world-body > p:not(.brand-stage, .brand-tagline) {
  color: #4c4a45;
}

.brand-world-card-siren {
  color: var(--pearl);
  background: #071014;
  border-color: rgba(247, 244, 239, 0.22);
}

.brand-world-card-siren .brand-world-body > p:not(.brand-stage, .brand-tagline),
.brand-world-card-siren .brand-signal-list dd {
  color: rgba(247, 244, 239, 0.74);
}

.brand-world-card-siren .button-secondary {
  color: var(--pearl);
}

.brand-world-card-siren .button-secondary:hover,
.brand-world-card-siren .button-secondary:focus-visible {
  color: var(--champagne);
}

.brand-world-card-angel {
  background: rgba(255, 253, 248, 0.92);
}

.brand-signal-list {
  display: grid;
  margin: 8px 0 0;
  padding: 0;
  border-top: 1px solid rgba(125, 117, 107, 0.24);
}

.brand-world-card-siren .brand-signal-list {
  border-top-color: rgba(247, 244, 239, 0.2);
}

.brand-signal-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(125, 117, 107, 0.24);
}

.brand-world-card-siren .brand-signal-list div {
  border-bottom-color: rgba(247, 244, 239, 0.2);
}

.brand-signal-list dd {
  margin: 0;
  color: #4c4a45;
  font-size: 0.9rem;
}

.brand-choice-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: center;
  color: var(--pearl);
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.95), rgba(7, 16, 20, 0.78)),
    url("/assets/salt-silk-hero.png") center / cover no-repeat;
}

.brand-choice-copy {
  max-width: 520px;
}

.brand-choice-copy p,
.brand-choice-grid p {
  color: rgba(247, 244, 239, 0.74);
}

.brand-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 248, 0.18);
}

.brand-choice-grid article {
  min-height: 210px;
  padding: 26px 22px;
  background: rgba(26, 26, 26, 0.36);
}

.brand-choice-grid h3 {
  margin-top: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-choice-grid p {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.brand-house-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--pearl);
}

.brand-house-cta h2,
.brand-house-cta p {
  max-width: 720px;
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.content-page {
  width: min(960px, calc(100% - 36px));
}

.legal-page > p {
  max-width: 690px;
  margin-top: 18px;
  color: #4c4a45;
}

.legal-page section {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.legal-page section p {
  margin-top: 10px;
  color: #4c4a45;
}

.legal-page a {
  color: var(--brass);
}

.legal-page .button-primary {
  color: var(--ink);
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.content-visual,
.content-visual-grid {
  margin-top: 34px;
}

.content-visual {
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.content-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-visual-grid .content-visual {
  margin-top: 0;
}

.content-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-visual figcaption {
  padding: 14px 18px;
  color: #625f59;
  font-size: 0.78rem;
  line-height: 1.6;
}

.message-page {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: 96px;
}

.message-page h1 {
  max-width: none;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.message-page p {
  color: var(--smoke);
}

.commerce-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.commerce-store-hero {
  min-height: clamp(420px, 52vh, 560px);
}

.brand-domain-page .commerce-store-hero {
  min-height: clamp(300px, 40vh, 420px);
}

.brand-domain-page.commerce-shop-page .commerce-store-hero {
  min-height: clamp(104px, 12vh, 148px);
  padding-top: clamp(14px, 2vw, 22px);
  padding-bottom: clamp(28px, 3vw, 38px);
}

.brand-domain-page.commerce-shop-page #commerce-catalog.commerce-section {
  z-index: 2;
  margin-top: clamp(-48px, -3.4vw, -34px);
  padding-top: 0;
}

.brand-domain-page.commerce-shop-page #commerce-catalog .commerce-shell {
  margin-top: 0;
}

.brand-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid {
  position: relative;
  z-index: 3;
}

.brand-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-swatch-row {
  display: none;
}

.commerce-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 248, 0.05) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
  mix-blend-mode: screen;
  opacity: 0.42;
}

.angel-detail-hero.commerce-hero::before {
  background:
    linear-gradient(115deg, rgba(23, 57, 61, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(23, 57, 61, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(23, 57, 61, 0.05) 1px, transparent 1px);
  mix-blend-mode: multiply;
}

.commerce-hero > .commerce-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  width: min(1180px, 100%);
  max-width: none;
}

body:not(.brand-domain-page) .commerce-store-hero > .commerce-hero-inner {
  grid-template-columns: minmax(280px, 0.48fr) minmax(680px, 1.12fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: min(1320px, 100%);
}

.brand-domain-page .commerce-store-hero > .commerce-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: min(880px, 100%);
}

.commerce-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.brand-domain-page .commerce-store-hero .commerce-hero-copy {
  max-width: none;
}

body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-copy {
  max-width: 620px;
}

body:not(.brand-domain-page) .commerce-store-hero h1 {
  max-width: 8.4ch;
  font-size: clamp(3.25rem, 5vw, 5rem);
  line-height: 0.94;
}

.brand-domain-page.commerce-shop-page .commerce-store-hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.brand-domain-page.commerce-shop-page .commerce-store-hero .eyebrow {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-hero-copy .button,
.commerce-hero-copy .domain-button {
  justify-self: start;
}

.commerce-hero-actions,
.commerce-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-actions {
  display: none;
}

.commerce-secondary-link {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
}

.siren-domain-page .commerce-secondary-link {
  color: rgba(247, 244, 239, 0.82);
}

.commerce-hero-signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
}

.commerce-store-hero .commerce-hero-signal-strip {
  display: none;
}

.brand-domain-page .commerce-store-hero .commerce-hero-signal-strip {
  width: min(760px, 100%);
}

.brand-domain-page.commerce-shop-page .commerce-store-hero .commerce-hero-signal-strip {
  width: min(680px, 100%);
}

.brand-domain-page.commerce-shop-page .commerce-store-hero .commerce-hero-signal {
  min-height: 112px;
}

.commerce-hero-signal {
  position: relative;
  display: grid;
  min-height: 126px;
  align-content: end;
  gap: 4px;
  padding: 10px;
  overflow: hidden;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background: #071014;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.commerce-hero-signal::before,
.commerce-hero-signal::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.commerce-hero-signal::before {
  z-index: -1;
  background: linear-gradient(180deg, transparent 24%, rgba(7, 16, 20, 0.72));
}

.commerce-hero-signal::after {
  z-index: -1;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: inherit;
  box-shadow: inset 0 0 34px rgba(255, 253, 248, 0.08);
  opacity: 0.74;
}

.commerce-hero-signal img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.commerce-hero-signal span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  color: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(7, 16, 20, 0.46);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.commerce-hero-signal strong {
  max-width: 8.5rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.4vw, 1.34rem);
  font-weight: 600;
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.36);
}

.commerce-store-hero .commerce-hero-signal,
.brand-domain-page.commerce-shop-page .commerce-store-hero .commerce-hero-signal {
  min-height: 108px;
  padding: 0;
}

.commerce-store-hero .commerce-hero-signal::before {
  background: linear-gradient(180deg, transparent 42%, rgba(7, 16, 20, 0.36));
}

.commerce-store-hero .commerce-hero-signal::after {
  background:
    radial-gradient(circle at 18px calc(100% - 18px), rgba(255, 253, 248, 0.96) 0 3px, transparent 4px),
    radial-gradient(circle at 18px calc(100% - 18px), rgba(7, 16, 20, 0.38) 0 13px, transparent 14px);
}

.angel-domain-page .commerce-store-hero .commerce-hero-signal::before {
  background: linear-gradient(180deg, transparent 52%, rgba(26, 26, 26, 0.2));
}

.commerce-store-hero .commerce-hero-signal span,
.commerce-store-hero .commerce-hero-signal strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-hero-signal:hover img,
.commerce-hero-signal:focus-visible img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.045);
}

.commerce-hero-signal:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

body:not(.brand-domain-page) .commerce-hero-signal,
.angel-domain-page .commerce-hero-signal {
  border-color: rgba(26, 26, 26, 0.1);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 42px rgba(26, 26, 26, 0.12);
}

.angel-domain-page .commerce-hero-signal::before {
  background: linear-gradient(180deg, transparent 20%, rgba(255, 253, 248, 0.34) 58%, rgba(26, 26, 26, 0.46));
}

.commerce-hero-deck {
  display: grid;
  gap: 12px;
  align-self: stretch;
  align-content: end;
}

.commerce-hero-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background: rgba(10, 16, 18, 0.46);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.angel-detail-hero .commerce-hero-card,
body:not(.brand-domain-page) .commerce-hero-card {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.12);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.12);
}

.commerce-hero-card strong {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 0.95;
}

.commerce-hero-card span,
.commerce-hero-card li {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.angel-detail-hero .commerce-hero-card span,
.angel-detail-hero .commerce-hero-card li,
body:not(.brand-domain-page) .commerce-hero-card span,
body:not(.brand-domain-page) .commerce-hero-card li {
  color: var(--smoke);
}

.commerce-hero-card p {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.86rem;
}

.angel-detail-hero .commerce-hero-card p,
body:not(.brand-domain-page) .commerce-hero-card p {
  color: var(--smoke);
}

.commerce-hero-path {
  margin: 0;
  padding: 0;
  list-style: none;
}

.commerce-hero-path li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
}

.commerce-hero-path li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background: var(--champagne);
}

.commerce-hero-product-stage,
.commerce-hero-brand-stage {
  width: 100%;
  justify-self: end;
}

.commerce-hero-product-stage {
  max-width: 560px;
}

.commerce-hero-loading-card {
  display: grid;
  gap: 8px;
  min-height: 220px;
  align-content: end;
  padding: 22px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background: rgba(10, 16, 18, 0.48);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.angel-domain-page .commerce-hero-loading-card {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.12);
  background: rgba(255, 253, 248, 0.76);
}

.commerce-hero-loading-card span {
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-hero-loading-card strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.98;
}

.commerce-hero-loading-card p {
  color: rgba(247, 244, 239, 0.74);
  font-size: 0.86rem;
}

.angel-domain-page .commerce-hero-loading-card p {
  color: var(--smoke);
}

.commerce-hero-preview-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(190px, 0.72fr);
  gap: 12px;
  min-height: clamp(390px, 48vh, 520px);
  padding: 12px;
  overflow: hidden;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(200, 169, 102, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.11), rgba(7, 16, 20, 0.72)),
    rgba(7, 16, 20, 0.82);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.angel-domain-page .commerce-hero-preview-card {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 253, 248, 0.94), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(216, 226, 223, 0.52)),
    rgba(255, 253, 248, 0.82);
  box-shadow: 0 28px 76px rgba(125, 117, 107, 0.18);
}

.commerce-hero-preview-main,
.commerce-hero-preview-tile,
.commerce-hero-preview-detail {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.46);
  isolation: isolate;
}

.angel-domain-page .commerce-hero-preview-main,
.angel-domain-page .commerce-hero-preview-tile,
.angel-domain-page .commerce-hero-preview-detail {
  border-color: rgba(26, 26, 26, 0.1);
  background: rgba(255, 253, 248, 0.72);
}

.commerce-hero-preview-main {
  display: grid;
  align-content: end;
  min-height: 100%;
}

.commerce-hero-preview-main::after,
.commerce-hero-preview-tile::after,
.commerce-hero-preview-detail::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 58%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 16, 20, 0.72));
}

.angel-domain-page .commerce-hero-preview-main::after,
.angel-domain-page .commerce-hero-preview-tile::after,
.angel-domain-page .commerce-hero-preview-detail::after {
  background: linear-gradient(180deg, transparent, rgba(255, 253, 248, 0.34) 34%, rgba(26, 26, 26, 0.42));
}

.commerce-hero-preview-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 800ms ease, filter 800ms ease;
}

.commerce-hero-preview-card:hover img,
.commerce-hero-preview-card:focus-within img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.035);
}

.commerce-hero-preview-main figcaption,
.commerce-hero-preview-tile figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  align-content: end;
  min-height: 100%;
  padding: 16px;
}

.commerce-hero-preview-main figcaption span,
.commerce-hero-preview-tile figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  color: var(--champagne);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-hero-preview-main figcaption strong {
  max-width: 8ch;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.55vw, 2.55rem);
  font-weight: 500;
  line-height: 0.88;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.commerce-hero-preview-main figcaption small {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(7, 16, 20, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.angel-domain-page .commerce-hero-preview-main figcaption small {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.12);
  background: rgba(255, 253, 248, 0.64);
}

.commerce-hero-preview-side {
  display: grid;
  grid-template-rows: minmax(160px, 1fr) auto auto;
  gap: 10px;
  min-width: 0;
}

.commerce-hero-preview-tile figcaption strong {
  max-width: 9rem;
  font-family: var(--serif);
  font-size: 1.56rem;
  font-weight: 600;
  line-height: 0.9;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.commerce-hero-preview-detail {
  display: grid;
  min-height: 92px;
  align-items: end;
  padding: 9px;
}

.commerce-hero-preview-detail img {
  opacity: 0.46;
}

.commerce-hero-preview-chips {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.commerce-hero-preview-chips span {
  display: grid;
  gap: 5px;
  min-height: 70px;
  align-content: start;
  padding: 8px;
  color: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.5);
  backdrop-filter: blur(12px);
}

.angel-domain-page .commerce-hero-preview-chips span {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.1);
  background: rgba(255, 253, 248, 0.64);
}

.commerce-hero-preview-chips .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--champagne);
}

.commerce-hero-preview-chips em {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.angel-domain-page .commerce-hero-preview-chips em {
  color: var(--smoke);
}

.commerce-hero-preview-chips strong {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.18;
}

.commerce-hero-preview-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.commerce-hero-preview-actions button {
  display: inline-flex;
  min-width: 0;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 7px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  font: 800 0.58rem/1.1 var(--sans);
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.angel-domain-page .commerce-hero-preview-actions button {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.14);
  background: rgba(255, 253, 248, 0.72);
}

.commerce-hero-preview-actions button:hover,
.commerce-hero-preview-actions button:focus-visible {
  border-color: var(--champagne);
  background: rgba(200, 169, 102, 0.18);
  transform: translateY(-1px);
}

.commerce-hero-preview-actions button:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.commerce-hero-preview-actions .commerce-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.commerce-hero-buy-card.commerce-product-card {
  grid-template-rows: minmax(270px, auto) 1fr;
  min-height: 0;
  border-color: rgba(255, 253, 248, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.13), rgba(200, 169, 102, 0.08)),
    rgba(7, 16, 20, 0.7);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.angel-domain-page .commerce-hero-buy-card.commerce-product-card {
  border-color: rgba(26, 26, 26, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.42)),
    rgba(255, 253, 248, 0.88);
  box-shadow: 0 28px 76px rgba(125, 117, 107, 0.18);
}

.commerce-hero-buy-card.commerce-product-card:hover,
.commerce-hero-buy-card.commerce-product-card:focus-within {
  transform: translateY(-2px);
}

.commerce-hero-buy-media {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  background: #071014;
}

.angel-domain-page .commerce-hero-buy-media {
  background: var(--ivory);
}

.commerce-hero-buy-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 16, 20, 0.58));
}

.angel-domain-page .commerce-hero-buy-media::after {
  background: linear-gradient(180deg, transparent, rgba(255, 253, 248, 0.26));
}

.commerce-hero-buy-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.commerce-hero-buy-card:hover .commerce-hero-buy-media img,
.commerce-hero-buy-card:focus-within .commerce-hero-buy-media img {
  transform: scale(1.025);
}

.commerce-hero-buy-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.commerce-hero-buy-body h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
}

.commerce-fit-actions,
.commerce-fit-panel-actions,
.commerce-product-depth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.commerce-fit-actions button,
.commerce-fit-actions a,
.commerce-size-note button,
.commerce-fit-panel-actions button,
.commerce-fit-panel-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid rgba(247, 244, 239, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(247, 244, 239, 0.88);
  background: rgba(255, 253, 248, 0.075);
  font: 700 0.66rem/1 var(--sans);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.angel-domain-page .commerce-fit-actions button,
.angel-domain-page .commerce-fit-actions a,
.angel-domain-page .commerce-size-note button,
.angel-domain-page .commerce-fit-panel-actions button,
.angel-domain-page .commerce-fit-panel-actions a {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.16);
  background: rgba(255, 253, 248, 0.72);
}

.commerce-fit-actions button:hover,
.commerce-fit-actions button:focus-visible,
.commerce-fit-actions a:hover,
.commerce-fit-actions a:focus-visible,
.commerce-size-note button:hover,
.commerce-size-note button:focus-visible,
.commerce-fit-panel-actions button:hover,
.commerce-fit-panel-actions button:focus-visible,
.commerce-fit-panel-actions a:hover,
.commerce-fit-panel-actions a:focus-visible {
  transform: translateY(-1px);
}

.commerce-hero-buy-card .commerce-size-grid {
  grid-template-columns: minmax(0, 1fr);
}

.commerce-hero-buy-card .commerce-size-options {
  gap: 6px;
}

.commerce-hero-buy-card .commerce-size-option {
  min-width: 52px;
  min-height: 40px;
  padding: 8px 10px;
}

.commerce-hero-buy-card .commerce-product-meta {
  align-items: stretch;
}

.commerce-hero-buy-card .commerce-product-meta button,
.commerce-hero-buy-card .commerce-product-action {
  min-width: 180px;
}

.commerce-product-meta .commerce-icon,
.commerce-fit-actions .commerce-icon,
.commerce-size-note .commerce-icon,
.commerce-fit-panel-actions .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-hero-brand-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-stage {
  gap: 16px;
  max-width: 820px;
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero {
  min-height: clamp(640px, 88vh, 820px);
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(34px, 5vw, 60px);
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero > .commerce-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  width: min(1220px, 100%);
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-copy > .eyebrow,
body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-copy > h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-stage {
  position: relative;
  width: 100%;
  max-width: none;
  gap: clamp(12px, 2vw, 22px);
  isolation: isolate;
  perspective: 1600px;
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-stage::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(200, 169, 102, 0.42) 49%, rgba(216, 226, 223, 0.34) 51%, transparent 54%),
    linear-gradient(180deg, transparent, rgba(255, 253, 248, 0.1) 42%, transparent);
  opacity: 0.58;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-stage::after {
  position: absolute;
  z-index: 0;
  inset: 4% -5% -8%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.48), transparent 32%, transparent 68%, rgba(255, 253, 248, 0.18)),
    repeating-linear-gradient(112deg, rgba(255, 253, 248, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0.38;
  clip-path: polygon(0 8%, 48% 0, 100% 9%, 100% 100%, 0 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, transparent 100%);
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card {
  --commerce-current: 0;
  --commerce-tide-angle: 112deg;
  z-index: 1;
  min-height: clamp(540px, 68vh, 700px);
  overflow: clip;
  border-color: rgba(255, 253, 248, 0.3);
  background:
    linear-gradient(var(--commerce-tide-angle), rgba(255, 253, 248, 0.1), transparent 36%),
    rgba(7, 16, 20, 0.18);
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 253, 248, 0.16);
  transition:
    --commerce-current 520ms ease,
    --commerce-tide-angle 640ms ease,
    transform 520ms ease,
    opacity 320ms ease,
    box-shadow 520ms ease,
    border-color 320ms ease;
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card::before {
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.04) 0%, rgba(7, 16, 20, 0.16) 40%, rgba(7, 16, 20, 0.8) 100%),
    linear-gradient(var(--commerce-tide-angle), rgba(255, 253, 248, calc(0.04 + (var(--commerce-current) * 0.1))), transparent 46%);
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card::after {
  inset: 14px;
  border-color: rgba(255, 253, 248, 0.34);
  box-shadow:
    inset 0 0 46px rgba(255, 253, 248, 0.08),
    inset 0 0 calc(22px + (var(--commerce-current) * 28px)) rgba(200, 169, 102, calc(0.05 + (var(--commerce-current) * 0.08)));
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card {
  transform-style: preserve-3d;
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:hover,
body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:focus-visible {
  --commerce-current: 1;
  --commerce-tide-angle: 126deg;
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:hover::after,
body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:focus-visible::after {
  border-color: rgba(255, 253, 248, 0.52);
  box-shadow:
    inset 0 0 56px rgba(255, 253, 248, 0.12),
    0 0 0 1px rgba(200, 169, 102, 0.12);
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-hero-brand-card.is-siren > img.commerce-hero-brand-primary {
  object-position: center 44%;
  filter: brightness(calc(0.86 + (var(--commerce-current) * 0.06))) saturate(calc(0.98 + (var(--commerce-current) * 0.12))) contrast(calc(1.03 + (var(--commerce-current) * 0.04)));
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-hero-brand-card.is-angel > img.commerce-hero-brand-primary {
  object-position: center 42%;
  filter: brightness(calc(1.04 + (var(--commerce-current) * 0.04))) saturate(calc(0.95 + (var(--commerce-current) * 0.08))) contrast(calc(1 + (var(--commerce-current) * 0.03)));
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-hero-brand-card span,
body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-hero-brand-card strong {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-hero-brand-card strong {
  display: block;
  width: fit-content;
  max-width: calc(100% - 76px);
}

body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-hero-brand-card:hover > img.commerce-hero-brand-primary,
body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-hero-brand-card:focus-visible > img.commerce-hero-brand-primary {
  transform: scale(1.045) translateY(-4px);
}

.commerce-hero-brand-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: 410px;
  align-content: end;
  padding: 22px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-card {
  min-height: 540px;
  padding: 24px;
}

.commerce-hero-brand-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 26%, rgba(7, 16, 20, 0.84));
}

.commerce-hero-brand-card::after {
  position: absolute;
  z-index: -1;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.28);
}

.commerce-hero-brand-card > img.commerce-hero-brand-primary {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 300ms ease;
}

.commerce-hero-brand-card.is-siren > img.commerce-hero-brand-primary {
  filter: brightness(0.72) saturate(0.92);
}

.commerce-hero-brand-card.is-angel > img.commerce-hero-brand-primary {
  filter: brightness(0.96) saturate(0.9);
}

.commerce-hero-brand-card:hover > img.commerce-hero-brand-primary,
.commerce-hero-brand-card:focus-visible > img.commerce-hero-brand-primary {
  transform: scale(1.035);
}

.commerce-hero-brand-collage {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  display: grid;
  width: min(34%, 138px);
  pointer-events: none;
}

.commerce-hero-brand-collage::before {
  position: absolute;
  z-index: -1;
  inset: -10px;
  pointer-events: none;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 253, 248, 0.28), transparent 68%);
  opacity: 0.2;
  filter: blur(8px);
  transition: opacity 420ms ease, transform 620ms ease;
}

body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-collage {
  width: min(30%, 154px);
}

.commerce-hero-brand-collage img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 7px;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 253, 248, 0.08);
  transform: rotate(3deg);
  transition: transform 640ms ease, filter 420ms ease, opacity 420ms ease;
}

.commerce-hero-brand-collage img + img {
  margin-top: -20px;
  transform: translateX(-12px) rotate(-4deg);
}

.commerce-hero-brand-card.is-siren .commerce-hero-brand-collage img {
  filter: brightness(0.86) saturate(0.96) contrast(1.04);
}

.commerce-hero-brand-card.is-angel .commerce-hero-brand-collage img {
  border-color: rgba(255, 253, 248, 0.62);
  filter: brightness(1.02) saturate(0.94) contrast(1.01);
}

.commerce-hero-brand-card:hover .commerce-hero-brand-collage img,
.commerce-hero-brand-card:focus-visible .commerce-hero-brand-collage img {
  filter: saturate(1.07) contrast(1.04);
  transform: translateY(-4px) rotate(1deg);
}

.commerce-hero-brand-card:hover .commerce-hero-brand-collage::before,
.commerce-hero-brand-card:focus-visible .commerce-hero-brand-collage::before {
  opacity: 0.42;
  transform: translateY(-4px) scale(1.04);
}

.commerce-hero-brand-card:hover .commerce-hero-brand-collage img + img,
.commerce-hero-brand-card:focus-visible .commerce-hero-brand-collage img + img {
  transform: translate(-12px, 4px) rotate(-2deg);
}

.commerce-hero-brand-card span {
  position: relative;
  z-index: 2;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-hero-brand-signals {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: min(100%, 330px);
  max-width: calc(100% - 74px);
  margin-top: 10px;
}

.commerce-hero-brand-signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 30px;
  gap: 5px;
  padding: 0 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.12), rgba(200, 169, 102, 0.1)),
    rgba(7, 16, 20, 0.32);
  color: rgba(255, 253, 248, 0.88);
  font-style: normal;
  line-height: 1;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.36);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(14px) saturate(1.06);
  -webkit-backdrop-filter: blur(14px) saturate(1.06);
}

.commerce-hero-brand-signal .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
  stroke-width: 1.9;
}

.commerce-hero-brand-signal b {
  display: block;
  min-width: 0;
  color: currentColor;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.commerce-hero-brand-card.is-angel .commerce-hero-brand-signal {
  border-color: rgba(255, 253, 248, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.18), rgba(216, 226, 223, 0.14)),
    rgba(7, 16, 20, 0.22);
}

.commerce-hero-brand-card.is-angel .commerce-hero-brand-signal .commerce-icon {
  color: #f1dfac;
}

.commerce-hero-brand-card strong {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
}

body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-card strong {
  font-size: 2.18rem;
}

.commerce-hero-brand-card small {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-hero-brand-card .commerce-hero-brand-entry {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.16), rgba(200, 169, 102, 0.16)),
    rgba(7, 16, 20, 0.36);
  color: var(--paper);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 253, 248, 0.2);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  transition: transform 360ms ease, border-color 360ms ease, background 360ms ease;
}

.commerce-hero-brand-card .commerce-hero-brand-entry .commerce-icon {
  width: 18px;
  height: 18px;
}

.commerce-hero-brand-card:hover .commerce-hero-brand-entry,
.commerce-hero-brand-card:focus-visible .commerce-hero-brand-entry {
  border-color: rgba(255, 253, 248, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.22), rgba(200, 169, 102, 0.24)),
    rgba(7, 16, 20, 0.46);
  transform: translateX(3px);
}

.commerce-featured-piece {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  padding: clamp(58px, 7vw, 86px) 7vw;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(230, 223, 210, 0.68)),
    var(--paper);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-featured-piece {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.98), rgba(14, 29, 33, 0.96)),
    #071014;
  border-color: rgba(247, 244, 239, 0.14);
}

.angel-domain-page .commerce-featured-piece {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(216, 226, 223, 0.52)),
    var(--paper);
}

.commerce-featured-media {
  position: relative;
  min-height: clamp(520px, 62vw, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 24px 68px rgba(26, 26, 26, 0.12);
}

.siren-domain-page .commerce-featured-media {
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.32);
}

.commerce-featured-media::after {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.36);
}

.commerce-featured-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.commerce-featured-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  max-width: 620px;
}

.commerce-featured-copy h2 {
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 0.92;
}

.commerce-featured-copy > p:not(.eyebrow),
.commerce-featured-panels p {
  color: var(--smoke);
  font-size: 0.98rem;
  line-height: 1.75;
}

.commerce-featured-copy > p:not(.eyebrow) {
  max-width: 42ch;
}

.siren-domain-page .commerce-featured-copy > p:not(.eyebrow),
.siren-domain-page .commerce-featured-panels p {
  color: rgba(247, 244, 239, 0.74);
}

.commerce-featured-specs,
.commerce-fit-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.1);
}

.siren-domain-page .commerce-featured-specs,
.siren-domain-page .commerce-fit-spec-grid {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(247, 244, 239, 0.14);
}

.commerce-featured-specs div,
.commerce-fit-spec-grid div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.78);
}

.siren-domain-page .commerce-featured-specs div,
.siren-domain-page .commerce-fit-spec-grid div {
  background: rgba(255, 253, 248, 0.06);
}

.commerce-featured-specs dt,
.commerce-fit-spec-grid dt,
.commerce-featured-panels span,
.commerce-product-trust-grid span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.commerce-featured-specs dd,
.commerce-fit-spec-grid dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.02;
}

.commerce-featured-panels,
.commerce-product-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.commerce-product-card:not(.is-initiation) .commerce-product-trust-grid {
  grid-template-columns: minmax(0, 1fr);
}

.commerce-featured-panels article,
.commerce-product-trust-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
}

.siren-domain-page .commerce-featured-panels article,
.siren-domain-page .commerce-product-trust-grid article {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-visual-facts article {
  min-height: 116px;
  align-content: end;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.88), rgba(216, 226, 223, 0.48)),
    rgba(255, 253, 248, 0.78);
}

.siren-domain-page .commerce-visual-facts article {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.1), rgba(200, 169, 102, 0.08)),
    rgba(255, 253, 248, 0.05);
}

.commerce-featured-panels strong,
.commerce-product-trust-grid strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1;
}

.commerce-product-depth {
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  padding: clamp(46px, 7vw, 84px) 6.5vw;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.48)),
    var(--paper);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-product-depth {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.96), rgba(19, 57, 61, 0.74)),
    #071014;
  border-color: rgba(247, 244, 239, 0.12);
}

.commerce-product-depth-copy {
  position: sticky;
  top: 96px;
  display: grid;
  align-self: center;
  gap: 18px;
  max-width: 480px;
}

.commerce-product-depth-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.9;
}

.commerce-product-depth-copy > p:not(.eyebrow),
.commerce-product-depth-grid p {
  color: var(--smoke);
  line-height: 1.75;
}

.commerce-product-depth-copy > p:not(.eyebrow) {
  max-width: 34ch;
}

.siren-domain-page .commerce-product-depth-copy > p:not(.eyebrow),
.siren-domain-page .commerce-product-depth-grid p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-product-depth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.commerce-product-depth-grid article {
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 22px 60px rgba(26, 26, 26, 0.07);
}

.siren-domain-page .commerce-product-depth-grid article {
  border-color: rgba(247, 244, 239, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.1), rgba(200, 169, 102, 0.055)),
    rgba(255, 253, 248, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.commerce-product-depth-grid span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-product-depth-grid span {
  color: var(--champagne);
}

.commerce-product-depth-grid h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 0.98;
}

.commerce-product-depth-grid .commerce-visual-story-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: clamp(420px, 42vw, 620px);
  align-content: end;
  padding: 0;
  color: var(--paper);
  border-color: rgba(255, 253, 248, 0.2);
  background: #071014;
  box-shadow: 0 26px 72px rgba(26, 26, 26, 0.14);
}

.siren-domain-page .commerce-product-depth-grid .commerce-visual-story-card {
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.32);
}

.commerce-product-depth-grid .commerce-visual-story-card:nth-child(even) {
  margin-top: 42px;
}

.commerce-product-depth-grid .commerce-visual-story-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.04) 18%, rgba(7, 16, 20, 0.74) 100%),
    linear-gradient(90deg, rgba(7, 16, 20, 0.26), transparent 54%);
}

.commerce-product-depth-grid .commerce-visual-story-card::after {
  position: absolute;
  z-index: 1;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.24);
}

.commerce-product-depth-grid .commerce-visual-story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease, filter 400ms ease;
}

.siren-domain-page .commerce-product-depth-grid .commerce-visual-story-card img {
  filter: brightness(0.82) saturate(0.92);
}

.angel-domain-page .commerce-product-depth-grid .commerce-visual-story-card img {
  filter: brightness(0.96) saturate(0.92);
}

.commerce-product-depth-grid .commerce-visual-story-card:hover img,
.commerce-product-depth-grid .commerce-visual-story-card:focus-within img {
  transform: scale(1.035);
}

.commerce-product-depth-grid .commerce-visual-story-card div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
  padding: 18px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.48);
}

.commerce-product-depth-grid .commerce-visual-story-card span {
  color: var(--champagne);
}

.commerce-product-depth-grid .commerce-visual-story-card h3 {
  color: var(--paper);
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
}

.commerce-product-depth-grid .commerce-visual-story-card p {
  max-width: 22ch;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.commerce-social-reel {
  display: grid;
  gap: 24px;
  padding: clamp(44px, 6vw, 76px) 6.5vw;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.36)),
    var(--paper);
  border-block: 1px solid rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-social-reel {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.98), rgba(19, 57, 61, 0.82)),
    #071014;
  border-color: rgba(247, 244, 239, 0.12);
}

body:not(.brand-domain-page) .commerce-social-reel {
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.92), rgba(19, 57, 61, 0.82)),
    var(--teal);
  border-color: rgba(255, 253, 248, 0.14);
}

.commerce-social-reel-head {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

.commerce-social-reel-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
}

.commerce-social-reel-track {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.08fr 0.92fr;
  gap: clamp(10px, 1.8vw, 18px);
  align-items: end;
}

.commerce-social-reel-track figure,
.commerce-social-reel-track a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: clamp(420px, 44vw, 640px);
  align-content: end;
  margin: 0;
  color: #fffdf8;
  background: #071014;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(26, 26, 26, 0.16);
  text-decoration: none;
}

.siren-domain-page .commerce-social-reel-track figure,
body:not(.brand-domain-page) .commerce-social-reel-track a {
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.32);
}

.commerce-social-reel-track figure:nth-child(even),
.commerce-social-reel-track a:nth-child(even) {
  min-height: clamp(360px, 38vw, 560px);
  margin-bottom: clamp(18px, 4vw, 46px);
}

.commerce-social-reel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 820ms ease, filter 360ms ease;
}

.siren-domain-page .commerce-social-reel-track img,
body:not(.brand-domain-page) .commerce-social-reel-track img {
  filter: brightness(0.84) saturate(0.94);
}

.angel-domain-page .commerce-social-reel-track img {
  filter: brightness(0.96) saturate(0.92);
}

.commerce-social-reel-track figure::before,
.commerce-social-reel-track a::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.04), rgba(7, 16, 20, 0.76)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.28), transparent 58%);
}

.commerce-social-reel-track figure::after,
.commerce-social-reel-track a::after {
  position: absolute;
  z-index: 1;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.24);
}

.commerce-social-reel-track figure:hover img,
.commerce-social-reel-track figure:focus-within img,
.commerce-social-reel-track a:hover img,
.commerce-social-reel-track a:focus-visible img {
  transform: scale(1.035);
}

.commerce-social-reel-track figcaption,
.commerce-social-reel-track a span,
.commerce-social-reel-track a strong {
  position: relative;
  z-index: 2;
}

.commerce-social-reel-track figcaption,
.commerce-social-reel-track a {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}

.commerce-social-reel-track figcaption {
  display: grid;
  gap: 7px;
  padding: 18px;
}

.commerce-social-reel-track a {
  gap: 7px;
  padding: 18px;
}

.commerce-social-reel-track span,
.commerce-social-reel-track figcaption span {
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-social-reel-track strong,
.commerce-social-reel-track figcaption strong {
  max-width: 13ch;
  color: #fffdf8;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 0.95;
}

.commerce-pdp-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1.05fr) minmax(330px, 0.86fr);
  gap: clamp(20px, 2.6vw, 34px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(54px, 6vw, 88px) clamp(24px, 5vw, 76px);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(84, 116, 123, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(216, 226, 223, 0.56)),
    var(--paper);
}

.siren-domain-page .commerce-pdp-hero {
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 18%, rgba(84, 116, 123, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(6, 15, 18, 0.96), rgba(12, 32, 35, 0.96)),
    #071014;
}

.commerce-pdp-copy,
.commerce-pdp-band-copy,
.commerce-pdp-proof-band > div {
  display: grid;
  gap: 16px;
}

.commerce-pdp-copy h1 {
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(3.85rem, 7.6vw, 7.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.86;
  overflow-wrap: normal;
  word-break: normal;
}

.commerce-pdp-copy .lede {
  max-width: 36ch;
}

.commerce-product-detail-page .commerce-pdp-copy .lede {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.commerce-pdp-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.36fr);
  gap: 12px;
  min-height: min(74vh, 760px);
}

.commerce-pdp-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 26px 70px rgba(26, 26, 26, 0.16);
}

.siren-domain-page .commerce-pdp-gallery figure {
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.36);
}

.commerce-pdp-gallery figure:not(.commerce-pdp-shot-main) {
  align-self: end;
  height: 56%;
}

.commerce-pdp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commerce-pdp-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 999px;
  background: rgba(10, 16, 18, 0.42);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.commerce-pdp-gallery figcaption[data-pdp-image-cue] {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: rgba(255, 253, 248, 0.9);
  background: rgba(10, 16, 18, 0.34);
  font-size: 0;
  letter-spacing: 0;
}

.commerce-pdp-gallery figcaption[data-pdp-image-cue]::before,
.commerce-pdp-gallery figcaption[data-pdp-image-cue]::after {
  position: absolute;
  content: "";
}

.commerce-pdp-gallery figcaption[data-pdp-image-cue="fit"]::before {
  width: 12px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 999px 999px 8px 8px;
}

.commerce-pdp-gallery figcaption[data-pdp-image-cue="fit"]::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(3px);
}

.commerce-pdp-gallery figcaption[data-pdp-image-cue="shore"]::before {
  width: 16px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 5px 0 rgba(255, 253, 248, 0.64);
  transform: rotate(-6deg);
}

.commerce-pdp-gallery figcaption[data-pdp-image-cue="shore"]::after {
  right: 8px;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

@media (min-width: 901px) {
  .commerce-product-detail-page .commerce-pdp-hero {
    grid-template-columns: minmax(180px, 0.46fr) minmax(560px, 1.42fr) minmax(300px, 0.72fr);
    gap: clamp(18px, 2.1vw, 30px);
    min-height: clamp(640px, 84vh, 780px);
    padding-top: clamp(40px, 4.6vw, 66px);
    padding-bottom: clamp(40px, 4.8vw, 66px);
  }

  .commerce-product-detail-page .commerce-pdp-copy h1 {
    max-width: 9ch;
    font-size: clamp(3.35rem, 5.9vw, 6.1rem);
  }

  .commerce-product-detail-page .commerce-pdp-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.34fr);
    gap: 10px;
    height: clamp(500px, 58vh, 620px);
    min-height: 0;
    align-self: center;
  }

  .commerce-product-detail-page .commerce-pdp-gallery .commerce-pdp-shot-main {
    height: 100%;
    min-height: 0;
  }

  .commerce-product-detail-page .commerce-pdp-gallery figure:not(.commerce-pdp-shot-main) {
    height: 58%;
  }

  .commerce-product-detail-page .commerce-pdp-buy-stage {
    align-self: center;
  }
}

.commerce-pdp-buy-stage .commerce-hero-buy-card.commerce-product-card {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(280px, auto) 1fr;
  min-height: 0;
}

.commerce-pdp-buy-stage .commerce-hero-buy-media {
  min-height: 280px;
}

.commerce-pdp-buy-stage .commerce-pdp-quick-buy-card.commerce-product-card {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  min-height: 0;
  overflow: hidden;
}

.commerce-pdp-quick-buy-card .commerce-hero-buy-body {
  gap: 14px;
  padding: 18px;
}

.commerce-pdp-quick-buy-card .commerce-product-copy {
  display: grid;
  gap: 8px;
}

.commerce-pdp-quick-buy-card .commerce-product-copy > .eyebrow,
.commerce-pdp-quick-buy-card .commerce-product-copy h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-quick-cues {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  justify-content: center;
  gap: 8px;
}

.commerce-pdp-quick-cues span,
.commerce-pdp-quick-cues button,
.commerce-pdp-quick-cues a {
  display: grid;
  min-width: 0;
  min-height: 54px;
  gap: 4px;
  align-content: center;
  border: 1px solid rgba(247, 244, 239, 0.13);
  border-radius: 8px;
  padding: 9px 10px;
  color: rgba(247, 244, 239, 0.82);
  background: rgba(255, 253, 248, 0.055);
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.angel-domain-page .commerce-pdp-quick-cues span,
.angel-domain-page .commerce-pdp-quick-cues button,
.angel-domain-page .commerce-pdp-quick-cues a {
  border-color: rgba(26, 26, 26, 0.12);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
}

.commerce-pdp-quick-cues button,
.commerce-pdp-quick-cues a {
  cursor: pointer;
}

.commerce-pdp-quick-cues .commerce-pdp-quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  border-radius: 999px;
  padding: 0;
  text-align: center;
}

.commerce-pdp-quick-cues .commerce-pdp-quick-action span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-quick-cues button:hover,
.commerce-pdp-quick-cues button:focus-visible,
.commerce-pdp-quick-cues a:hover,
.commerce-pdp-quick-cues a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(200, 169, 102, 0.42);
}

.commerce-pdp-quick-cues .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--champagne);
}

.angel-domain-page .commerce-pdp-quick-cues .commerce-icon {
  color: var(--teal);
}

.commerce-pdp-quick-cues em,
.commerce-pdp-quick-cues strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: normal;
  white-space: nowrap;
}

.commerce-pdp-quick-cues em {
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.commerce-pdp-quick-cues strong {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.05;
}

.commerce-pdp-quick-cues > span {
  position: relative;
  justify-items: center;
  min-height: 44px;
  gap: 6px;
  padding: 8px;
  text-align: center;
}

.commerce-pdp-quick-cues > span::after {
  width: 25px;
  height: 5px;
  content: "";
  background:
    linear-gradient(90deg, currentColor 0 5px, transparent 5px 10px, currentColor 10px 15px, transparent 15px 20px, currentColor 20px 25px);
  border-radius: 999px;
  opacity: 0.44;
}

.commerce-pdp-quick-cues > span > em,
.commerce-pdp-quick-cues > span > strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-quick-buy-card .commerce-size-note-copy,
.commerce-pdp-quick-buy-card .commerce-size-option small,
.commerce-pdp-quick-buy-card .commerce-inventory-note {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-quick-buy-card .commerce-size-control {
  position: relative;
  gap: 7px;
  padding-left: 34px;
}

.commerce-pdp-quick-buy-card .commerce-size-control legend,
.commerce-pdp-quick-buy-card .commerce-quantity-label {
  display: inline-grid;
  width: 28px;
  height: 28px;
  min-width: 28px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.64);
  color: var(--smoke);
  font-size: 0;
  line-height: 1;
}

.commerce-pdp-quick-buy-card .commerce-size-control legend {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.siren-domain-page .commerce-pdp-quick-buy-card .commerce-size-control legend,
.siren-domain-page .commerce-pdp-quick-buy-card .commerce-quantity-label {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(247, 244, 239, 0.06);
  color: rgba(247, 244, 239, 0.68);
}

.commerce-pdp-quick-buy-card .commerce-size-label-icon,
.commerce-pdp-quick-buy-card .commerce-quantity-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.commerce-pdp-quick-buy-card .commerce-size-label-icon .commerce-icon,
.commerce-pdp-quick-buy-card .commerce-quantity-label-icon .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-pdp-quick-buy-card .commerce-size-label-text,
.commerce-pdp-quick-buy-card .commerce-quantity-label-text {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-quick-buy-card .commerce-size-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.commerce-pdp-quick-buy-card .commerce-size-option {
  min-width: 0;
  min-height: 42px;
  padding: 9px 8px;
  border-radius: 8px;
}

.commerce-pdp-quick-buy-card .commerce-quantity-control {
  display: grid;
  grid-template-columns: 28px auto;
  gap: 7px;
  align-items: center;
}

.commerce-pdp-quick-buy-card .commerce-size-note {
  justify-content: flex-end;
  margin-top: -4px;
}

.commerce-pdp-passport {
  padding: clamp(44px, 5vw, 76px) clamp(24px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(216, 226, 223, 0.24), rgba(255, 253, 248, 0.86)),
    var(--paper);
}

.siren-domain-page .commerce-pdp-passport {
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.98), rgba(9, 25, 28, 0.98)),
    #071014;
}

.commerce-pdp-passport-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 10px;
  overflow: hidden;
  max-width: 1320px;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.3)),
    rgba(255, 253, 248, 0.7);
}

.siren-domain-page .commerce-pdp-passport-card {
  border-color: rgba(247, 244, 239, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(12, 46, 48, 0.28)),
    rgba(255, 253, 248, 0.045);
}

.commerce-pdp-passport-media {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(170px, 0.56fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 8px;
  min-height: 520px;
}

.commerce-pdp-passport-primary,
.commerce-pdp-passport-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.18);
}

.commerce-pdp-passport-primary {
  grid-row: 1 / 3;
  display: grid;
  align-content: end;
}

.commerce-pdp-passport-tile {
  display: grid;
  align-content: end;
  padding: 14px;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.commerce-pdp-passport-primary::after,
.commerce-pdp-passport-tile::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 32%, rgba(7, 16, 20, 0.78)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.24), transparent 66%);
}

.commerce-pdp-passport-primary img,
.commerce-pdp-passport-tile img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 620ms ease, filter 360ms ease;
}

.commerce-pdp-passport-primary:hover img,
.commerce-pdp-passport-primary:focus-within img,
.commerce-pdp-passport-tile:hover img,
.commerce-pdp-passport-tile:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.commerce-pdp-passport-primary figcaption {
  position: relative;
  display: grid;
  gap: 7px;
  max-width: 420px;
  padding: 24px;
}

.commerce-pdp-passport-primary span,
.commerce-pdp-passport-tile span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(247, 244, 239, 0.82);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-pdp-passport-primary .commerce-icon,
.commerce-pdp-passport-tile .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-pdp-passport-primary strong,
.commerce-pdp-passport-tile strong {
  max-width: 12ch;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  font-weight: 500;
  line-height: 0.96;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.commerce-pdp-passport-tile strong {
  margin-top: 7px;
  font-size: 1.24rem;
}

.commerce-pdp-passport-panel {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: clamp(18px, 3vw, 30px);
}

.commerce-pdp-passport-panel h2 {
  max-width: 12ch;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
}

.siren-domain-page .commerce-pdp-passport-panel h2 {
  color: var(--paper);
}

.commerce-pdp-assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.commerce-pdp-assurance-tile {
  position: relative;
  isolation: isolate;
  appearance: none;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon value"
    "copy copy";
  gap: 4px 9px;
  min-width: 0;
  min-height: 86px;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  padding: 11px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.64);
  color: var(--ink);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.commerce-pdp-assurance-tile::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 16% 0%, rgba(200, 169, 102, 0.18), transparent 42%),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 253, 248, 0.52) 50%, transparent 58%);
  opacity: 0.6;
  transform: translateX(-18%);
  transition: opacity 220ms ease, transform 420ms ease;
}

.commerce-pdp-assurance-tile::after {
  grid-column: 1 / -1;
  width: 100%;
  height: 4px;
  margin-top: 2px;
  content: "";
  border-radius: 999px;
  background:
    linear-gradient(90deg, currentColor 0 22%, transparent 22% 28%, currentColor 28% 58%, transparent 58% 64%, currentColor 64% 100%);
  opacity: 0.2;
}

.siren-domain-page .commerce-pdp-assurance-tile {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(247, 244, 239, 0.1), rgba(12, 46, 48, 0.34)),
    rgba(7, 16, 20, 0.56);
  color: var(--paper);
}

.commerce-pdp-assurance-tile:hover,
.commerce-pdp-assurance-tile:focus-visible {
  border-color: rgba(200, 169, 102, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.62),
    0 16px 34px rgba(163, 134, 67, 0.14);
  transform: translateY(-1px);
}

.commerce-pdp-assurance-tile:hover::before,
.commerce-pdp-assurance-tile:focus-visible::before {
  opacity: 0.86;
  transform: translateX(12%);
}

.siren-domain-page .commerce-pdp-assurance-tile:hover,
.siren-domain-page .commerce-pdp-assurance-tile:focus-visible {
  border-color: rgba(214, 192, 142, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(247, 244, 239, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.25);
}

.commerce-pdp-assurance-tile:focus-visible {
  outline: 2px solid rgba(200, 169, 102, 0.46);
  outline-offset: 2px;
}

.commerce-pdp-assurance-icon {
  grid-area: icon;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(216, 226, 223, 0.58);
}

.siren-domain-page .commerce-pdp-assurance-icon {
  color: var(--champagne);
  background: rgba(247, 244, 239, 0.08);
}

.commerce-pdp-assurance-icon .commerce-icon {
  width: 15px;
  height: 15px;
}

.commerce-pdp-assurance-label {
  grid-area: label;
  overflow: hidden;
  color: var(--smoke);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.siren-domain-page .commerce-pdp-assurance-label {
  color: rgba(247, 244, 239, 0.6);
}

.commerce-pdp-assurance-tile strong {
  grid-area: value;
  min-width: 0;
  overflow: hidden;
  color: currentColor;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.commerce-pdp-assurance-tile small {
  grid-area: copy;
  overflow: hidden;
  color: var(--smoke);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.siren-domain-page .commerce-pdp-assurance-tile small {
  color: rgba(247, 244, 239, 0.58);
}

.commerce-pdp-passport-sizes {
  display: grid;
  gap: 8px;
}

.commerce-pdp-passport-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.commerce-pdp-passport-actions a,
.commerce-pdp-passport-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  font: 800 0.66rem/1 var(--sans);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-pdp-passport-actions a,
.siren-domain-page .commerce-pdp-passport-actions button {
  border-color: rgba(247, 244, 239, 0.22);
  background: rgba(255, 253, 248, 0.08);
  color: var(--paper);
}

.commerce-pdp-passport-actions a:first-child {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.siren-domain-page .commerce-pdp-passport-actions a:first-child {
  border-color: var(--paper);
  background: var(--paper);
  color: #071014;
}

.commerce-pdp-passport-actions .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-pdp-visual-band,
.commerce-pdp-proof-band,
.commerce-pdp-support-section {
  padding: clamp(54px, 6vw, 88px) clamp(24px, 5vw, 76px);
}

.commerce-pdp-visual-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  background: rgba(255, 253, 248, 0.76);
}

.siren-domain-page .commerce-pdp-visual-band {
  color: var(--paper);
  background: rgba(9, 25, 28, 0.98);
}

.commerce-product-detail-page .commerce-pdp-visual-band {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-band-copy h2 {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.commerce-pdp-proof-band h2 {
  max-width: 13ch;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.9vw, 2.12rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.commerce-pdp-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.12);
}

.siren-domain-page .commerce-pdp-fact-grid {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(247, 244, 239, 0.14);
}

.commerce-pdp-fact-grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.82);
}

.siren-domain-page .commerce-pdp-fact-grid article {
  background: rgba(255, 253, 248, 0.06);
}

.commerce-pdp-fact-grid span {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-pdp-fact-grid span {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-pdp-fact-grid strong {
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
}

.commerce-pdp-fit-studio {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  padding: clamp(54px, 6vw, 88px) clamp(24px, 5vw, 76px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(230, 223, 210, 0.52)),
    var(--paper);
}

.siren-domain-page .commerce-pdp-fit-studio {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.98), rgba(9, 25, 28, 0.96)),
    #071014;
}

.commerce-pdp-fit-studio-head {
  display: grid;
  gap: 10px;
  align-content: end;
  min-height: 300px;
}

.commerce-pdp-fit-studio-head h2 {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.5vw, 4.45rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.commerce-pdp-fit-studio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.commerce-pdp-fit-studio-card {
  position: relative;
  min-height: clamp(360px, 34vw, 520px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 20px 56px rgba(26, 26, 26, 0.09);
}

.siren-domain-page .commerce-pdp-fit-studio-card {
  background: rgba(247, 244, 239, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.commerce-pdp-fit-studio-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(10, 16, 18, 0.5)),
    linear-gradient(90deg, rgba(10, 16, 18, 0.08), transparent 54%);
}

.commerce-pdp-fit-studio-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 800ms ease, filter 420ms ease;
}

.siren-domain-page .commerce-pdp-fit-studio-card img {
  filter: brightness(0.94) saturate(0.96);
}

.commerce-pdp-fit-studio-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.46);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.commerce-pdp-fit-studio-card figcaption > span:first-child {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.commerce-pdp-fit-studio-card strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.commerce-pdp-fit-meter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  width: min(128px, 100%);
  min-height: 5px;
}

.commerce-pdp-fit-meter i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.22);
}

.commerce-pdp-fit-meter[data-level="2"] i:nth-child(-n + 2),
.commerce-pdp-fit-meter[data-level="3"] i:nth-child(-n + 3),
.commerce-pdp-fit-meter[data-level="4"] i:nth-child(-n + 4) {
  background: currentColor;
}

@media (prefers-reduced-motion: no-preference) {
  .commerce-pdp-fit-studio-card:hover img,
  .commerce-pdp-fit-studio-card:focus-within img {
    transform: scale(1.035);
  }
}

.commerce-pdp-mood-section {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  padding: clamp(54px, 6vw, 88px) clamp(24px, 5vw, 76px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(216, 226, 223, 0.42)),
    var(--paper);
}

.siren-domain-page .commerce-pdp-mood-section {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.98), rgba(13, 38, 42, 0.96)),
    #071014;
}

.commerce-pdp-mood-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.42fr) minmax(220px, 0.32fr);
  gap: 18px;
  align-items: end;
}

.commerce-pdp-mood-copy h2 {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: 4.35rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.commerce-pdp-mood-copy p:not(.eyebrow) {
  max-width: 36ch;
  color: var(--smoke);
  line-height: 1.65;
}

.siren-domain-page .commerce-pdp-mood-copy p:not(.eyebrow) {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-pdp-mood-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.commerce-pdp-mood-cues span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255, 253, 248, 0.64);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-pdp-mood-cues span {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.07);
  color: var(--paper);
}

.commerce-pdp-mood-cues span::before {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  content: "";
  opacity: 0.8;
}

.commerce-pdp-mood-cues span[data-mood-cue="candid"]::before {
  border-radius: 2px;
  transform: rotate(45deg);
}

.commerce-pdp-mood-cues span[data-mood-cue="shore"]::before {
  width: 14px;
  height: 7px;
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: 0 4px 0 -3px currentColor;
}

.commerce-pdp-mood-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 10px;
}

.commerce-pdp-mood-grid figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
}

.commerce-pdp-mood-grid figure:first-child {
  min-height: 560px;
}

.commerce-pdp-mood-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms ease, filter 450ms ease;
}

.siren-domain-page .commerce-pdp-mood-grid img {
  filter: brightness(0.9) saturate(0.94);
}

.commerce-pdp-mood-grid figure:hover img,
.commerce-pdp-mood-grid figure:focus-within img {
  transform: scale(1.03);
}

.commerce-pdp-mood-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 999px;
  background: rgba(10, 16, 18, 0.44);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.commerce-pdp-proof-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.52)),
    var(--paper);
}

.siren-domain-page .commerce-pdp-proof-band {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(5, 12, 15, 0.98), rgba(13, 38, 42, 0.94)),
    #071014;
}

.commerce-pdp-proof-band figure {
  position: relative;
  grid-area: 1 / 1;
  margin: 0;
  min-height: clamp(360px, 38vw, 540px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 24px 72px rgba(26, 26, 26, 0.11);
}

.commerce-pdp-proof-band figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 38%, rgba(10, 16, 18, 0.46)),
    linear-gradient(90deg, rgba(10, 16, 18, 0.12), transparent 58%);
}

.commerce-pdp-proof-band img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: filter 360ms ease, transform 720ms ease;
}

.commerce-pdp-proof-band > div {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  align-self: end;
  justify-self: end;
  width: min(370px, 42vw);
  min-height: 0;
  margin: clamp(16px, 2.8vw, 34px);
  align-content: start;
  gap: 10px;
  padding: clamp(14px, 1.8vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.56)),
    rgba(255, 253, 248, 0.78);
  box-shadow: 0 22px 60px rgba(7, 16, 20, 0.18);
  backdrop-filter: blur(18px);
}

.siren-domain-page .commerce-pdp-proof-band > div {
  border-color: rgba(247, 244, 239, 0.18);
  background:
    linear-gradient(145deg, rgba(247, 244, 239, 0.12), rgba(12, 46, 48, 0.34)),
    rgba(5, 12, 15, 0.68);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.commerce-pdp-proof-band > div::before {
  display: block;
  width: 36px;
  height: 36px;
  content: "";
  border: 1px solid rgba(19, 57, 61, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, currentColor 48% 52%, transparent 53%),
    radial-gradient(circle at 50% 50%, rgba(200, 169, 102, 0.4) 0 4px, transparent 5px),
    rgba(216, 226, 223, 0.56);
  color: var(--teal);
  box-shadow: inset 0 0 0 7px rgba(255, 253, 248, 0.72);
}

.siren-domain-page .commerce-pdp-proof-band > div::before {
  border-color: rgba(247, 244, 239, 0.2);
  background:
    linear-gradient(135deg, transparent 47%, currentColor 48% 52%, transparent 53%),
    radial-gradient(circle at 50% 50%, rgba(200, 169, 102, 0.56) 0 4px, transparent 5px),
    rgba(247, 244, 239, 0.1);
  color: var(--champagne);
  box-shadow: inset 0 0 0 7px rgba(5, 12, 15, 0.62);
}

.commerce-pdp-proof-band p:not(.eyebrow) {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-proof-band .domain-text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(19, 57, 61, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--teal);
}

.commerce-pdp-proof-band .domain-text-link::after {
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.siren-domain-page .commerce-pdp-proof-band .domain-text-link {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(247, 244, 239, 0.08);
  color: var(--champagne);
}

@media (prefers-reduced-motion: no-preference) {
  .commerce-pdp-proof-band:hover img,
  .commerce-pdp-proof-band:focus-within img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.025);
  }
}

.commerce-pdp-support-section {
  background: rgba(216, 226, 223, 0.28);
}

.siren-domain-page .commerce-pdp-support-section {
  background: rgba(5, 10, 12, 0.96);
}

.commerce-pdp-account.commerce-account {
  position: static;
  max-width: min(860px, 76vw);
  margin-inline: auto;
}

.commerce-section {
  position: relative;
  padding: 82px 7vw 96px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(247, 244, 239, 0.86)),
    var(--paper);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-section {
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.98), rgba(7, 16, 20, 0.94)),
    #071014;
  color: var(--paper);
}

.angel-domain-page .commerce-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(230, 223, 210, 0.7)),
    var(--paper);
}

.commerce-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  gap: 30px;
  align-items: start;
  margin-top: 28px;
}

.commerce-main,
.commerce-account {
  display: grid;
  gap: 22px;
}

.commerce-account {
  position: sticky;
  top: 92px;
}

.brand-domain-page [data-commerce-page="shop"] .commerce-shell {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1120px;
  margin-inline: auto;
}

.brand-domain-page [data-commerce-page="shop"] .commerce-account {
  position: static;
  top: auto;
  width: min(100%, 560px);
  margin-inline: auto;
}

.commerce-status {
  min-height: 1.5em;
  color: var(--smoke);
  font-size: 0.82rem;
  line-height: 1.6;
}

.siren-domain-page .commerce-status {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-status[data-tone="success"] {
  color: #5b7456;
}

.siren-domain-page .commerce-status[data-tone="success"] {
  color: #bccaa8;
}

.commerce-status[data-tone="error"],
.commerce-auth-form .form-status[data-tone="error"] {
  color: #8f3d34;
}

.commerce-return-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(172px, 34%) minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.48)),
    rgba(255, 253, 248, 0.88);
  box-shadow: 0 22px 58px rgba(26, 26, 26, 0.1);
}

.commerce-return-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 46%, rgba(200, 169, 102, 0.2) 50%, transparent 55%),
    radial-gradient(circle at 12% 18%, rgba(67, 111, 109, 0.16), transparent 34%);
  opacity: 0.46;
  transform: translateX(-18%);
  transition: opacity 280ms ease, transform 580ms ease;
}

.commerce-return-visual:hover::before,
.commerce-return-visual:focus-within::before {
  opacity: 0.72;
  transform: translateX(12%);
}

.commerce-return-visual.is-success {
  border-color: rgba(91, 116, 86, 0.28);
}

.commerce-return-visual.is-cancelled {
  border-color: rgba(143, 116, 72, 0.24);
}

.siren-domain-page .commerce-return-visual {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(145deg, rgba(247, 244, 239, 0.09), rgba(12, 46, 48, 0.28)),
    rgba(7, 16, 20, 0.84);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.siren-domain-page .commerce-return-visual::before {
  background:
    linear-gradient(112deg, transparent 0 47%, rgba(214, 192, 142, 0.23) 50%, transparent 55%),
    repeating-linear-gradient(90deg, rgba(247, 244, 239, 0.06) 0 1px, transparent 1px 20px);
}

.commerce-return-visual figure {
  position: relative;
  min-width: 0;
  min-height: 224px;
  max-height: 360px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-return-visual figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 38%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.2), transparent 58%);
}

.commerce-return-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 260ms ease;
}

.commerce-return-visual:hover img,
.commerce-return-visual:focus-within img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.commerce-return-visual figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 10px 10px;
  display: grid;
  gap: 5px;
  color: var(--paper);
}

.commerce-return-visual figcaption span,
.commerce-return-visual-copy > span,
.commerce-return-visual-chips em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-return-visual figcaption strong {
  max-width: 11ch;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 0.96;
}

.commerce-return-visual figcaption .commerce-icon,
.commerce-return-visual-copy > span .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-return-visual-copy {
  display: grid;
  min-width: 0;
  gap: 12px;
  align-content: center;
  padding: 6px 8px 6px 0;
}

.commerce-return-visual-copy > span {
  color: var(--teal);
}

.siren-domain-page .commerce-return-visual-copy > span {
  color: var(--champagne);
}

.commerce-return-visual-copy h2 {
  max-width: 22ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.68rem;
  font-weight: 500;
  line-height: 1;
}

.siren-domain-page .commerce-return-visual-copy h2 {
  color: var(--paper);
}

.commerce-return-visual-copy p {
  max-width: 54ch;
  margin: 0;
  color: var(--smoke);
  font-size: 0.82rem;
  line-height: 1.5;
}

.siren-domain-page .commerce-return-visual-copy p {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-return-visual-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.commerce-return-visual-chips span {
  display: grid;
  min-width: 0;
  gap: 5px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 253, 248, 0.64);
  color: var(--ink);
}

.siren-domain-page .commerce-return-visual-chips span {
  border-color: rgba(247, 244, 239, 0.13);
  background: rgba(255, 253, 248, 0.055);
  color: var(--paper);
}

.commerce-return-visual-chips .commerce-icon {
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.siren-domain-page .commerce-return-visual-chips .commerce-icon {
  color: var(--champagne);
}

.commerce-return-visual-chips em {
  color: var(--smoke);
}

.siren-domain-page .commerce-return-visual-chips em {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-return-visual-chips strong {
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.commerce-shop-tools {
  display: grid;
  gap: 18px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.42)),
    rgba(255, 253, 248, 0.8);
  box-shadow: 0 20px 54px rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-shop-tools {
  border-color: rgba(247, 244, 239, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(200, 169, 102, 0.08)),
    rgba(255, 253, 248, 0.055);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.commerce-catalog-entry {
  display: grid;
  gap: 13px;
}

.commerce-catalog-entry h2 {
  max-width: none;
}

.commerce-catalog-entry-cues {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 620px);
}

.commerce-catalog-entry-cues a {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 132px;
  overflow: hidden;
  padding: 12px;
  color: var(--paper);
  border-radius: 8px;
  text-decoration: none;
  background: #071014;
  isolation: isolate;
}

.commerce-catalog-entry-cues a::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(7, 16, 20, 0.04), rgba(7, 16, 20, 0.68));
}

.commerce-catalog-entry-cues img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.commerce-catalog-entry-cues a:hover img,
.commerce-catalog-entry-cues a:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

.commerce-catalog-entry-cues span,
.commerce-catalog-entry-cues strong {
  position: relative;
  z-index: 1;
}

.commerce-catalog-entry-cues span {
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-catalog-entry-cues strong {
  margin-top: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.05;
}

.commerce-shop-fast-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr);
  gap: 14px;
  align-items: stretch;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.42)),
    rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.07);
}

.siren-domain-page .commerce-shop-fast-path {
  border-color: rgba(247, 244, 239, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(200, 169, 102, 0.08)),
    rgba(255, 253, 248, 0.052);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.commerce-shop-fast-copy {
  display: grid;
  min-width: 0;
  gap: 8px;
  align-content: center;
}

.commerce-shop-fast-copy > span,
.commerce-shop-next-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.siren-domain-page .commerce-shop-fast-copy > span,
.siren-domain-page .commerce-shop-next-copy > span {
  color: var(--champagne);
}

.commerce-shop-fast-copy .commerce-icon,
.commerce-shop-next-copy > span .commerce-icon {
  width: 15px;
  height: 15px;
}

.commerce-shop-fast-copy h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.16rem;
  font-weight: 500;
  line-height: 0.9;
}

.siren-domain-page .commerce-shop-fast-copy h2 {
  color: var(--paper);
}

.commerce-shop-fast-copy > strong {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--smoke);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.siren-domain-page .commerce-shop-fast-copy > strong {
  color: rgba(247, 244, 239, 0.68);
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-shop-fast-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.commerce-shop-fast-steps span {
  display: grid;
  min-width: 0;
  gap: 6px;
  align-content: center;
  min-height: 118px;
  padding: 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.52)),
    rgba(255, 253, 248, 0.74);
  color: var(--ink);
}

.siren-domain-page .commerce-shop-fast-steps span {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.06);
  color: var(--paper);
}

.commerce-shop-fast-steps .commerce-icon {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.siren-domain-page .commerce-shop-fast-steps .commerce-icon {
  color: var(--champagne);
}

.commerce-shop-fast-steps em {
  color: var(--smoke);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.siren-domain-page .commerce-shop-fast-steps em {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-shop-fast-steps strong {
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.commerce-product-grid.is-focused-shop-grid {
  grid-template-columns: minmax(0, 1fr);
}

.commerce-shop-next-access {
  display: grid;
  grid-template-columns: minmax(118px, 0.28fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(216, 226, 223, 0.32)),
    rgba(255, 253, 248, 0.64);
}

.siren-domain-page .commerce-shop-next-access {
  border-color: rgba(247, 244, 239, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.08)),
    rgba(255, 253, 248, 0.04);
}

.commerce-shop-next-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 124px;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-shop-next-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 28%, rgba(7, 16, 20, 0.84)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.12), transparent 60%);
}

.commerce-shop-next-visual img {
  width: 100%;
  height: 100%;
  min-height: 124px;
  object-fit: cover;
}

.commerce-shop-next-visual img + img {
  display: none;
}

.commerce-shop-next-visual figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 10px 10px;
  display: grid;
  gap: 3px;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
}

.commerce-shop-next-visual figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-shop-next-visual figcaption strong {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 0.98;
}

.commerce-shop-next-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
  align-content: center;
}

.commerce-shop-next-copy > strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.05;
}

.siren-domain-page .commerce-shop-next-copy > strong {
  color: var(--paper);
}

.commerce-shop-next-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.commerce-shop-next-chips span {
  display: grid;
  min-width: 0;
  gap: 4px;
  align-content: center;
  min-height: 54px;
  padding: 7px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.66);
}

.siren-domain-page .commerce-shop-next-chips span {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.06);
}

.commerce-shop-next-chips .commerce-icon {
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.siren-domain-page .commerce-shop-next-chips .commerce-icon {
  color: var(--champagne);
}

.commerce-shop-next-chips em {
  color: var(--smoke);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.siren-domain-page .commerce-shop-next-chips em {
  color: rgba(247, 244, 239, 0.6);
}

.commerce-shop-next-chips strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.siren-domain-page .commerce-shop-next-chips strong {
  color: var(--paper);
}

.commerce-shop-next-access a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  justify-self: start;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.siren-domain-page .commerce-shop-next-access a {
  border-color: rgba(247, 244, 239, 0.18);
  color: var(--paper);
}

.commerce-shop-board {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.commerce-shop-board figure {
  position: relative;
  min-width: 0;
  min-height: 248px;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-shop-board figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 34%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.22), transparent 58%);
}

.commerce-shop-board img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 560ms ease, filter 280ms ease;
}

.commerce-shop-board:hover img,
.commerce-shop-board:focus-within img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.commerce-shop-board figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 12px 12px;
  display: grid;
  gap: 5px;
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.commerce-shop-board figcaption span,
.commerce-shop-board-copy > span,
.commerce-shop-board-signals em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-shop-board figcaption strong {
  max-width: 9ch;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 0.98;
}

.commerce-shop-board .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-shop-board-copy {
  display: grid;
  min-width: 0;
  gap: 12px;
  align-content: center;
}

.commerce-shop-board-copy > span {
  color: var(--teal);
}

.siren-domain-page .commerce-shop-board-copy > span {
  color: var(--champagne);
}

.commerce-shop-board-copy h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  font-weight: 500;
  line-height: 0.94;
}

.siren-domain-page .commerce-shop-board-copy h2 {
  color: var(--paper);
}

.commerce-shop-board-copy p {
  max-width: 48ch;
  margin: 0;
  color: var(--smoke);
  font-size: 0.84rem;
  line-height: 1.55;
}

.siren-domain-page .commerce-shop-board-copy p {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-shop-board-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.commerce-shop-board-signals span {
  display: grid;
  min-width: 0;
  gap: 5px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 253, 248, 0.62);
  color: var(--ink);
}

.siren-domain-page .commerce-shop-board-signals span {
  border-color: rgba(247, 244, 239, 0.13);
  background: rgba(255, 253, 248, 0.055);
  color: var(--paper);
}

.commerce-shop-board-signals .commerce-icon {
  color: var(--teal);
}

.siren-domain-page .commerce-shop-board-signals .commerce-icon {
  color: var(--champagne);
}

.commerce-shop-board-signals em {
  color: var(--smoke);
}

.siren-domain-page .commerce-shop-board-signals em {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-shop-board-signals strong {
  min-width: 0;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.commerce-shop-tools-copy {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.commerce-shop-tools-copy h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.04;
}

.commerce-shop-tools-copy p:not(.eyebrow),
.commerce-shop-stat-grid p {
  color: var(--smoke);
  font-size: 0.9rem;
  line-height: 1.7;
}

.siren-domain-page .commerce-shop-tools-copy p:not(.eyebrow),
.siren-domain-page .commerce-shop-stat-grid p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-shop-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.1);
}

.siren-domain-page .commerce-shop-stat-grid {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(247, 244, 239, 0.14);
}

.commerce-shop-stat-grid article {
  display: grid;
  gap: 7px;
  min-height: 148px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.74);
}

.commerce-stat-icon,
.commerce-visual-fact-icon,
.commerce-fit-info-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--teal);
  border: 1px solid rgba(84, 116, 123, 0.24);
  border-radius: 999px;
  background: rgba(216, 226, 223, 0.34);
}

.commerce-stat-icon .commerce-icon,
.commerce-visual-fact-icon .commerce-icon,
.commerce-fit-info-icon .commerce-icon {
  width: 14px;
  height: 14px;
}

.siren-domain-page .commerce-shop-stat-grid article {
  background: rgba(7, 16, 20, 0.56);
}

.siren-domain-page .commerce-stat-icon,
.siren-domain-page .commerce-visual-fact-icon,
.siren-domain-page .commerce-fit-info-icon {
  color: var(--champagne);
  border-color: rgba(200, 169, 102, 0.28);
  background: rgba(200, 169, 102, 0.09);
}

.commerce-shop-stat-grid strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 0.95;
}

.commerce-shop-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.commerce-shop-path-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 14px;
  color: var(--paper);
  background: rgba(26, 26, 26, 0.12);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  isolation: isolate;
}

.commerce-shop-path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(7, 16, 20, 0.78)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.2), transparent 62%);
}

.commerce-shop-path-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.commerce-shop-path-card:hover img,
.commerce-shop-path-card:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.055);
}

.commerce-shop-path-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: rgba(247, 244, 239, 0.82);
}

.commerce-shop-path-card .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-shop-path-card strong {
  max-width: 11ch;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  font-weight: 500;
  line-height: 0.98;
}

.commerce-shop-path-card small {
  margin-top: 7px;
  color: rgba(247, 244, 239, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.25;
}

.brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path {
  gap: 6px;
  margin-top: -2px;
}

.brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card {
  min-height: 152px;
  padding: 10px;
}

.brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card::after {
  background:
    linear-gradient(180deg, transparent 38%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.22), transparent 66%);
}

.brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card span {
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  padding: 0;
  border: 1px solid rgba(247, 244, 239, 0.28);
  border-radius: 999px;
  font-size: 0;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(7, 16, 20, 0.34);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card .commerce-icon {
  width: 14px;
  height: 14px;
}

.brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card strong,
.brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card small {
  display: none;
}

.commerce-focused-worn-dock {
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.66), rgba(216, 226, 223, 0.22)),
    rgba(255, 253, 248, 0.48);
}

.siren-domain-page .commerce-focused-worn-dock {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(12, 46, 48, 0.24)),
    rgba(255, 253, 248, 0.04);
}

.commerce-focused-worn-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 8px;
}

.commerce-focused-worn-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.12);
  cursor: pointer;
  isolation: isolate;
}

.commerce-focused-worn-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(247, 244, 239, 0.16), transparent 34%),
    linear-gradient(180deg, transparent 36%, rgba(7, 16, 20, 0.76));
}

.commerce-focused-worn-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 440ms ease, filter 440ms ease;
}

.commerce-focused-worn-card:hover img,
.commerce-focused-worn-card:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.055);
}

.commerce-focused-worn-card > span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 244, 239, 0.3);
  border-radius: 999px;
  background: rgba(7, 16, 20, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.angel-domain-page .commerce-focused-worn-card > span {
  border-color: rgba(255, 253, 248, 0.52);
  background: rgba(255, 253, 248, 0.54);
}

.commerce-focused-worn-card .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--champagne);
}

.angel-domain-page .commerce-focused-worn-card .commerce-icon {
  color: var(--teal);
}

.commerce-product-lineup {
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.3)),
    rgba(255, 253, 248, 0.66);
}

.siren-domain-page .commerce-product-lineup {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(12, 46, 48, 0.28)),
    rgba(255, 253, 248, 0.04);
}

.commerce-product-lineup-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.commerce-product-lineup-head span,
.commerce-product-lineup-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-product-lineup-head span,
.siren-domain-page .commerce-product-lineup-card span {
  color: var(--champagne);
}

.commerce-product-lineup-head .commerce-icon,
.commerce-product-lineup-card .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-product-lineup-head strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.02;
  text-align: right;
}

.siren-domain-page .commerce-product-lineup-head strong {
  color: var(--paper);
}

.commerce-product-lineup-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(236px, 1fr);
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 3px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.commerce-product-lineup-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 6px;
  min-height: 292px;
  min-width: 0;
  overflow: hidden;
  padding: 13px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.18);
  cursor: pointer;
  font: inherit;
  text-align: left;
  scroll-snap-align: start;
  isolation: isolate;
}

.commerce-product-lineup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 36%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.24), transparent 58%);
}

.commerce-product-lineup-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 300ms ease;
}

.commerce-product-lineup-card:hover img,
.commerce-product-lineup-card:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.commerce-product-lineup-card span {
  width: fit-content;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(247, 244, 239, 0.28);
  border-radius: 999px;
  color: rgba(247, 244, 239, 0.84);
  background: rgba(7, 16, 20, 0.48);
  backdrop-filter: blur(12px);
}

.commerce-product-lineup-card strong {
  max-width: 12ch;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.commerce-product-lineup-card small {
  max-width: 24ch;
  color: rgba(247, 244, 239, 0.76);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.28;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
}

.commerce-product-lineup-card.is-locked img,
.commerce-product-lineup-card.is-mystery img {
  filter: brightness(0.88) saturate(0.96) contrast(1.02);
  transform: scale(1.015);
}

.commerce-style-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 10px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.3)),
    rgba(255, 253, 248, 0.7);
}

.siren-domain-page .commerce-style-board {
  border-color: rgba(247, 244, 239, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(12, 46, 48, 0.3)),
    rgba(255, 253, 248, 0.045);
}

.commerce-style-board-media {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(170px, 0.62fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 8px;
  min-height: 448px;
}

.commerce-style-board-main,
.commerce-style-board-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.18);
}

.commerce-style-board-main {
  grid-row: 1 / 3;
  display: grid;
  align-content: end;
  min-height: 448px;
}

.commerce-style-board-tile {
  display: grid;
  align-content: end;
  min-height: 0;
  padding: 14px;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.commerce-style-board-main::after,
.commerce-style-board-tile::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 32%, rgba(7, 16, 20, 0.78)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.24), transparent 66%);
}

.commerce-style-board-main img,
.commerce-style-board-tile img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 560ms ease, filter 340ms ease;
}

.commerce-style-board-main:hover img,
.commerce-style-board-main:focus-within img,
.commerce-style-board-tile:hover img,
.commerce-style-board-tile:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.commerce-style-board-main figcaption {
  position: relative;
  display: grid;
  gap: 7px;
  max-width: 420px;
  padding: 24px;
}

.commerce-style-board-main span,
.commerce-style-board-tile span,
.commerce-style-board-readiness span,
.commerce-style-board-facts span,
.commerce-style-board-size-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(247, 244, 239, 0.82);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-style-board-main .commerce-icon,
.commerce-style-board-tile .commerce-icon,
.commerce-style-board-readiness .commerce-icon,
.commerce-style-board-facts .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-style-board-main strong,
.commerce-style-board-tile strong {
  max-width: 12ch;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  font-weight: 500;
  line-height: 0.96;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.commerce-style-board-tile strong {
  margin-top: 7px;
  font-size: 1.24rem;
}

.commerce-style-board-panel {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: clamp(18px, 3vw, 30px);
}

.commerce-style-board-panel h2 {
  max-width: 12ch;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 4.1rem);
  font-weight: 500;
  line-height: 0.9;
}

.siren-domain-page .commerce-style-board-panel h2 {
  color: var(--paper);
}

.commerce-style-board-readiness,
.commerce-style-board-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.commerce-style-board-readiness span {
  min-height: 34px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--smoke);
  background: rgba(255, 253, 248, 0.62);
  letter-spacing: 0.04em;
}

.siren-domain-page .commerce-style-board-readiness span {
  border-color: rgba(247, 244, 239, 0.16);
  color: rgba(247, 244, 239, 0.72);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-style-board-readiness span[data-ready="true"] {
  border-color: rgba(163, 134, 67, 0.38);
  color: var(--ink);
  background: rgba(214, 192, 142, 0.24);
}

.siren-domain-page .commerce-style-board-readiness span[data-ready="true"] {
  color: var(--paper);
  background: rgba(200, 169, 102, 0.16);
}

.commerce-style-board-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.1);
}

.siren-domain-page .commerce-style-board-facts {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(247, 244, 239, 0.12);
}

.commerce-style-board-facts article {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 15px;
  background: rgba(255, 253, 248, 0.72);
}

.siren-domain-page .commerce-style-board-facts article {
  background: rgba(7, 16, 20, 0.56);
}

.commerce-style-board-facts span {
  color: var(--teal);
}

.siren-domain-page .commerce-style-board-facts span {
  color: var(--champagne);
}

.commerce-style-board-facts strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1;
}

.siren-domain-page .commerce-style-board-facts strong {
  color: var(--paper);
}

.commerce-style-board-sizes {
  display: grid;
  gap: 8px;
}

.commerce-style-board-size-row {
  display: grid;
  gap: 6px;
}

.commerce-style-board-size-row > span {
  color: var(--smoke);
}

.siren-domain-page .commerce-style-board-size-row > span {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-style-board-size-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.commerce-style-board-size-row em {
  display: grid;
  min-width: 54px;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(255, 253, 248, 0.6);
  font-style: normal;
}

.siren-domain-page .commerce-style-board-size-row em {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-style-board-size-row em[data-state="out"] {
  opacity: 0.48;
}

.commerce-style-board-size-row strong {
  color: var(--ink);
  font-size: 0.8rem;
}

.siren-domain-page .commerce-style-board-size-row strong {
  color: var(--paper);
}

.commerce-style-board-size-row small {
  color: var(--smoke);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-style-board-size-row small {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-style-board-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  font: 800 0.66rem/1 var(--sans);
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-style-board-actions button {
  border-color: rgba(247, 244, 239, 0.22);
  background: rgba(255, 253, 248, 0.08);
  color: var(--paper);
}

.commerce-style-board-actions button:first-child {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.siren-domain-page .commerce-style-board-actions button:first-child {
  border-color: var(--paper);
  background: var(--paper);
  color: #071014;
}

.commerce-style-board-actions .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-shore-journey {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(216, 226, 223, 0.28)),
    rgba(255, 253, 248, 0.7);
}

.siren-domain-page .commerce-shore-journey {
  border-color: rgba(247, 244, 239, 0.18);
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.88), rgba(7, 16, 20, 0.42)),
    rgba(7, 16, 20, 0.56);
}

.commerce-shore-journey-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 4px 0;
}

.commerce-shore-journey-head span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-shore-journey-head span {
  color: var(--champagne);
}

.commerce-shore-journey-head strong {
  max-width: 15ch;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.34rem, 2vw, 1.92rem);
  font-weight: 500;
  line-height: 0.98;
  text-align: right;
}

.siren-domain-page .commerce-shore-journey-head strong {
  color: var(--paper);
}

.commerce-shore-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.commerce-shore-journey-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 239, 0.2);
  border-radius: 8px;
  padding: 12px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.2);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  text-decoration: none;
}

.commerce-shore-journey-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.04) 20%, rgba(7, 16, 20, 0.84)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.3), transparent 64%);
}

.commerce-shore-journey-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.commerce-shore-journey-card:hover img,
.commerce-shore-journey-card:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.commerce-shore-journey-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  margin-bottom: 0;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgba(247, 244, 239, 0.26);
  border-radius: 999px;
  color: rgba(247, 244, 239, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(7, 16, 20, 0.36);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.commerce-shore-journey-card span i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(247, 244, 239, 0.34);
  border-radius: 999px;
  color: var(--champagne);
  font-style: normal;
  letter-spacing: 0;
  background: rgba(247, 244, 239, 0.1);
}

.commerce-shore-journey-card .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-shore-journey-card strong {
  position: relative;
  z-index: 2;
  max-width: 11ch;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2vw, 1.86rem);
  font-weight: 500;
  line-height: 0.96;
}

.commerce-shore-journey-card small {
  position: relative;
  z-index: 2;
  max-width: 19ch;
  margin-top: 8px;
  color: rgba(247, 244, 239, 0.74);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.3;
}

.commerce-moment-reel {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 12px;
  background:
    radial-gradient(circle at 14% 16%, rgba(198, 158, 81, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(240, 243, 239, 0.7));
}

.siren-domain-page .commerce-moment-reel {
  border-color: rgba(247, 244, 239, 0.18);
  background:
    radial-gradient(circle at 12% 14%, rgba(214, 192, 142, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 16, 20, 0.9), rgba(10, 24, 28, 0.66));
}

.commerce-moment-reel-head {
  display: grid;
  max-width: 760px;
  gap: 6px;
  padding: 4px 4px 0;
}

.commerce-moment-reel-head span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-moment-reel-head span {
  color: var(--champagne);
}

.commerce-moment-reel-head strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  font-weight: 500;
  line-height: 0.96;
}

.siren-domain-page .commerce-moment-reel-head strong {
  color: var(--paper);
}

.commerce-moment-reel-head p {
  max-width: 54ch;
  margin: 0;
  color: rgba(26, 26, 26, 0.66);
  font-size: 0.92rem;
  line-height: 1.55;
}

.siren-domain-page .commerce-moment-reel-head p {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-moment-track {
  display: grid;
  grid-template-columns: minmax(280px, 1.34fr) repeat(4, minmax(170px, 1fr));
  gap: 8px;
}

.commerce-moment-card {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 239, 0.24);
  border-radius: 8px;
  padding: 16px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.28);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
}

.commerce-moment-card.is-featured {
  min-height: 520px;
}

.commerce-moment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.02) 14%, rgba(7, 16, 20, 0.68) 100%),
    linear-gradient(90deg, rgba(7, 16, 20, 0.28), transparent 62%);
}

.commerce-moment-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(247, 244, 239, 0.22);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.commerce-moment-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 620ms ease, filter 620ms ease;
}

.commerce-moment-card:hover img,
.commerce-moment-card:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.07);
}

.commerce-moment-card:hover::after,
.commerce-moment-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.commerce-moment-card span {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  border: 1px solid rgba(247, 244, 239, 0.26);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(247, 244, 239, 0.84);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(7, 16, 20, 0.36);
  backdrop-filter: blur(12px);
}

.commerce-moment-card span i {
  color: var(--champagne);
  font-style: normal;
}

.commerce-moment-card .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-moment-card strong {
  position: relative;
  z-index: 3;
  max-width: 10ch;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.56rem, 2.2vw, 2.15rem);
  font-weight: 500;
  line-height: 0.96;
}

@supports (animation-timeline: view()) {
  .commerce-moment-card img,
  .commerce-store-hero .commerce-hero-signal img {
    animation: commerceMomentDrift linear both;
    animation-range: entry 12% exit 88%;
    animation-timeline: view(block);
  }
}

@keyframes commerceMomentDrift {
  from {
    transform: scale(1.06) translateY(-12px);
  }

  to {
    transform: scale(1.02) translateY(10px);
  }
}

@media (max-width: 760px) {
  .commerce-moment-reel {
    padding: 12px 0 12px 12px;
  }

  .commerce-moment-reel-head {
    padding-right: 12px;
  }

  .commerce-moment-reel-head strong {
    font-size: 1.72rem;
  }

  .commerce-moment-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 12px 4px 0;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
  }

  .commerce-moment-card,
  .commerce-moment-card.is-featured {
    min-width: min(78vw, 318px);
    min-height: 420px;
    scroll-snap-align: start;
  }

  .commerce-moment-card.is-featured {
    min-width: min(86vw, 348px);
  }
}

.commerce-shop-stat-grid span,
.commerce-discovery-filter-group > span,
.commerce-set-builder span,
.commerce-filter-bar button span,
.commerce-filter-bar button strong {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-fit-finder {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.1);
}

.commerce-fit-finder.is-image-only {
  display: block;
}

.siren-domain-page .commerce-fit-finder {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(247, 244, 239, 0.14);
}

.commerce-fit-finder-copy,
.commerce-fit-finder-card {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(216, 226, 223, 0.38)),
    rgba(255, 253, 248, 0.78);
}

.siren-domain-page .commerce-fit-finder-copy,
.siren-domain-page .commerce-fit-finder-card {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.08), rgba(200, 169, 102, 0.07)),
    rgba(7, 16, 20, 0.58);
}

.commerce-fit-finder-copy {
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 18px;
}

.commerce-fit-finder-copy span,
.commerce-fit-finder-card span,
.commerce-fit-finder-card em {
  color: var(--smoke);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-fit-finder-copy span,
.siren-domain-page .commerce-fit-finder-card span,
.siren-domain-page .commerce-fit-finder-card em {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-fit-finder-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.commerce-fit-finder-copy p {
  color: var(--smoke);
  font-size: 0.88rem;
  line-height: 1.65;
}

.siren-domain-page .commerce-fit-finder-copy p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-fit-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  min-width: 0;
}

.commerce-fit-finder.is-image-only .commerce-fit-finder-grid {
  min-height: 0;
}

.commerce-fit-finder-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 236px;
  align-content: end;
  gap: 7px;
  padding: 16px;
  overflow: hidden;
  color: var(--paper);
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.commerce-fit-finder.is-image-only .commerce-fit-finder-card {
  min-height: 218px;
}

.commerce-fit-finder-card::before,
.commerce-fit-finder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.commerce-fit-finder-card::before {
  background: linear-gradient(180deg, rgba(7, 16, 20, 0.08), rgba(7, 16, 20, 0.78));
}

.commerce-fit-finder-card::after {
  border: 1px solid rgba(255, 253, 248, 0.16);
  opacity: 0;
  transition: opacity 220ms ease, inset 220ms ease;
}

.commerce-fit-finder-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 720ms ease, filter 260ms ease;
}

.commerce-fit-finder-card:hover img,
.commerce-fit-finder-card:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.commerce-fit-finder-card:hover::after,
.commerce-fit-finder-card:focus-visible::after,
.commerce-fit-finder-card[aria-pressed="true"]::after {
  inset: 8px;
  opacity: 1;
}

.commerce-fit-finder-card strong {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 500;
  line-height: 0.96;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.commerce-fit-finder-card small {
  max-width: 22ch;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.82rem;
  line-height: 1.5;
}

.commerce-fit-finder-card em {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 999px;
  background: rgba(10, 16, 18, 0.44);
  backdrop-filter: blur(12px);
}

.commerce-fit-finder-card em .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-merchandising-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 14px;
  align-items: stretch;
}

.commerce-filter-system,
.commerce-discovery-board,
.commerce-discovery-filter-group,
.commerce-set-builder,
.commerce-set-builder ol {
  display: grid;
}

.commerce-filter-system,
.commerce-discovery-board {
  gap: 13px;
}

.commerce-discovery-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commerce-discovery-filter-group {
  gap: 8px;
  min-width: 0;
}

.commerce-discovery-filter-group > span,
.commerce-set-builder span {
  color: var(--smoke);
}

.siren-domain-page .commerce-discovery-filter-group > span,
.siren-domain-page .commerce-set-builder span {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.commerce-filter-bar button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.commerce-filter-bar .commerce-icon {
  width: 13px;
  height: 13px;
  opacity: 0.72;
}

.commerce-filter-visual {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
}

.siren-domain-page .commerce-filter-visual {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(255, 253, 248, 0.08);
}

.commerce-filter-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 260ms ease;
}

.commerce-filter-bar button:hover .commerce-filter-visual img,
.commerce-filter-bar button:focus-visible .commerce-filter-visual img,
.commerce-filter-bar button[aria-pressed="true"] .commerce-filter-visual img {
  transform: scale(1.1);
}

.commerce-filter-visual i {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 253, 248, 0.42), transparent 28%),
    linear-gradient(135deg, var(--teal), var(--champagne));
}

.commerce-filter-visual.is-black i {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 253, 248, 0.18), transparent 28%),
    linear-gradient(135deg, #050708, #20292b 58%, #0a1013);
}

.commerce-filter-visual.is-ivory i {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(135deg, #fffdf8, #ede5d8 58%, #d8e2df);
}

.commerce-filter-bar-compact {
  gap: 7px;
}

.commerce-filter-bar-compact button {
  min-height: 46px;
  padding: 5px 9px 5px 5px;
}

.siren-domain-page .commerce-filter-bar button {
  border-color: rgba(247, 244, 239, 0.2);
  background: rgba(255, 253, 248, 0.06);
  color: var(--paper);
}

.commerce-filter-bar button strong {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--teal);
}

.siren-domain-page .commerce-filter-bar button strong {
  color: #071014;
  background: var(--champagne);
}

.commerce-filter-bar button:hover,
.commerce-filter-bar button:focus-visible,
.commerce-filter-bar button[aria-pressed="true"] {
  transform: translateY(-1px);
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.siren-domain-page .commerce-filter-bar button:hover,
.siren-domain-page .commerce-filter-bar button:focus-visible,
.siren-domain-page .commerce-filter-bar button[aria-pressed="true"] {
  border-color: var(--paper);
  background: var(--paper);
  color: #071014;
}

.commerce-filter-bar button[aria-pressed="true"] strong {
  color: var(--ink);
  background: var(--paper);
}

.siren-domain-page .commerce-filter-bar button[aria-pressed="true"] strong {
  color: var(--paper);
  background: #071014;
}

.commerce-set-builder {
  gap: 16px;
  align-content: space-between;
  min-height: 100%;
  padding: 18px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(216, 226, 223, 0.56)),
    rgba(255, 253, 248, 0.8);
}

.siren-domain-page .commerce-set-builder {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.09), rgba(200, 169, 102, 0.08)),
    rgba(7, 16, 20, 0.58);
}

.commerce-set-builder-visual {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-set-builder-visual {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(247, 244, 239, 0.08);
}

.commerce-set-builder-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(10, 10, 10, 0.58)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.2), transparent 56%);
  pointer-events: none;
}

.commerce-set-builder-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.commerce-set-builder:hover .commerce-set-builder-visual img,
.commerce-set-builder:focus-within .commerce-set-builder-visual img {
  transform: scale(1.045);
}

.commerce-set-builder-visual figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 14px 14px;
  display: grid;
  gap: 4px;
  color: var(--paper);
}

.commerce-set-builder-visual figcaption strong {
  font-family: var(--serif);
  font-size: clamp(1.36rem, 2.1vw, 1.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.commerce-set-builder-visual figcaption small {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-set-builder-copy {
  display: grid;
  gap: 8px;
}

.commerce-set-builder-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.08rem);
  font-weight: 500;
  line-height: 0.98;
}

.commerce-set-builder-copy p {
  max-width: 30ch;
  color: var(--smoke);
  font-size: 0.84rem;
  line-height: 1.5;
}

.siren-domain-page .commerce-set-builder-copy p {
  color: rgba(247, 244, 239, 0.66);
}

.commerce-set-builder ol {
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  list-style: none;
  background: rgba(26, 26, 26, 0.1);
}

.siren-domain-page .commerce-set-builder ol {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(247, 244, 239, 0.12);
}

.commerce-set-builder li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px;
  align-items: start;
  padding: 12px;
  background: rgba(255, 253, 248, 0.76);
}

.commerce-set-builder li .commerce-icon {
  grid-row: span 2;
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.siren-domain-page .commerce-set-builder li {
  background: rgba(255, 253, 248, 0.055);
}

.commerce-set-builder li strong {
  grid-column: 2;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.commerce-set-builder li small {
  grid-column: 2;
  overflow: hidden;
  color: var(--smoke);
  font-size: 0.7rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.siren-domain-page .commerce-set-builder li small {
  color: rgba(247, 244, 239, 0.6);
}

.siren-domain-page .commerce-set-builder li .commerce-icon {
  color: var(--champagne);
}

.commerce-set-builder a,
.commerce-set-builder-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-set-builder a,
.siren-domain-page .commerce-set-builder-action {
  color: #071014;
  background: var(--paper);
  border-color: var(--paper);
}

.commerce-set-builder-action .commerce-icon {
  flex: 0 0 auto;
}

.commerce-set-builder-action span {
  display: inline;
  overflow: visible;
  max-width: none;
  color: currentColor;
  opacity: 1;
  white-space: nowrap;
}

.siren-domain-page .commerce-set-builder .commerce-set-builder-action span {
  color: currentColor;
}

.commerce-tide-rail {
  display: grid;
  gap: 14px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.48)),
    rgba(255, 253, 248, 0.76);
}

.siren-domain-page .commerce-tide-rail {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(84, 116, 123, 0.14)),
    rgba(7, 16, 20, 0.52);
}

.commerce-tide-rail-head,
.commerce-saved-shelf > div {
  display: grid;
  gap: 5px;
}

.commerce-tide-rail-head span,
.commerce-saved-shelf span,
.commerce-tide-visual-card > div > span,
.commerce-tide-visual-card button span,
.commerce-tide-quiet-label {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-tide-rail-head span,
.siren-domain-page .commerce-saved-shelf span,
.siren-domain-page .commerce-tide-visual-card > div > span,
.siren-domain-page .commerce-tide-visual-card button span,
.siren-domain-page .commerce-tide-quiet-label {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-tide-rail-head strong,
.commerce-saved-shelf strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 500;
  line-height: 1.02;
}

.commerce-tide-rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.commerce-tide-visual-card.commerce-tide-card {
  display: grid;
  grid-template-rows: 170px 1fr;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
}

.siren-domain-page .commerce-tide-visual-card.commerce-tide-card {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.06);
}

.commerce-tide-visual-card figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
}

.commerce-tide-visual-card figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 68%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.66));
}

.commerce-tide-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 320ms ease;
}

.commerce-tide-visual-card.is-locked img {
  filter: brightness(0.86) saturate(0.94) contrast(1.02);
  transform: scale(1.02);
}

.commerce-tide-visual-card:hover img,
.commerce-tide-visual-card:focus-within img {
  transform: scale(1.045);
}

.commerce-tide-visual-card figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  color: var(--paper);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.42);
}

.commerce-tide-visual-card figcaption span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-tide-visual-card figcaption strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.02;
}

.commerce-tide-visual-card > div {
  display: grid;
  gap: 10px;
  align-content: space-between;
  padding: 15px;
}

.commerce-tide-visual-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.commerce-tide-visual-card button,
.commerce-saved-shelf button,
.commerce-saved-shelf a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 0 13px;
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.siren-domain-page .commerce-tide-visual-card button,
.siren-domain-page .commerce-saved-shelf button,
.siren-domain-page .commerce-saved-shelf a {
  color: #071014;
  border-color: var(--paper);
  background: var(--paper);
}

.commerce-tide-visual-card button span,
.commerce-saved-shelf button span {
  color: inherit;
}

.commerce-tide-visual-card button:hover,
.commerce-tide-visual-card button:focus-visible,
.commerce-saved-shelf button:hover,
.commerce-saved-shelf button:focus-visible,
.commerce-saved-shelf a:hover,
.commerce-saved-shelf a:focus-visible {
  transform: translateY(-1px);
}

.commerce-tide-visual-card button strong {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-size: 0.68rem;
}

.siren-domain-page .commerce-tide-visual-card button strong {
  color: var(--paper);
  background: #071014;
}

.commerce-tide-quiet-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.commerce-continue-shelf {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(216, 226, 223, 0.36)),
    rgba(255, 253, 248, 0.76);
}

.siren-domain-page .commerce-continue-shelf {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(200, 169, 102, 0.08)),
    rgba(255, 253, 248, 0.055);
}

.commerce-continue-copy {
  display: grid;
  gap: 7px;
  align-content: center;
  min-width: 0;
}

.commerce-continue-copy span,
.commerce-continue-card span {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-continue-copy span,
.siren-domain-page .commerce-continue-card span {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-continue-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 0.98;
}

.commerce-continue-copy p,
.commerce-continue-card p {
  color: var(--smoke);
  font-size: 0.84rem;
  line-height: 1.5;
}

.siren-domain-page .commerce-continue-copy p,
.siren-domain-page .commerce-continue-card p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-continue-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.commerce-continue-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  min-height: 144px;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.siren-domain-page .commerce-continue-card {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(7, 16, 20, 0.5);
}

.commerce-continue-card img {
  width: 92px;
  height: 100%;
  min-height: 124px;
  object-fit: cover;
  border-radius: 6px;
}

.commerce-continue-card div {
  display: grid;
  gap: 6px;
  align-content: center;
  min-width: 0;
}

.commerce-continue-card strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-continue-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-continue-card button {
  color: #071014;
  border-color: var(--champagne);
  background: var(--champagne);
}

.commerce-continue-card button .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-lookbook-band {
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.36)),
    rgba(255, 253, 248, 0.78);
}

.siren-domain-page .commerce-lookbook-band {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.09), rgba(200, 169, 102, 0.08)),
    rgba(255, 253, 248, 0.055);
}

.commerce-lookbook-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.commerce-lookbook-header > div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.commerce-lookbook-header h2 {
  max-width: 13ch;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 0.94;
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-header {
  position: absolute;
  top: 28px;
  right: 28px;
  bottom: auto;
  z-index: 4;
  order: 2;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-header > div {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-header h2 {
  max-width: none;
  font-size: clamp(1.34rem, 1.7vw, 1.78rem);
  line-height: 1;
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-header .eyebrow,
.commerce-lookbook-band:not(.is-group) .commerce-lookbook-header h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-lookbook-band:not(.is-group) {
  position: relative;
  gap: 10px;
}

.commerce-lookbook-header p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--smoke);
  font-size: 0.9rem;
  line-height: 1.6;
}

.siren-domain-page .commerce-lookbook-header p:not(.eyebrow) {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-lookbook-cues {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.commerce-lookbook-cues span {
  padding: 9px;
  background: rgba(255, 253, 248, 0.7);
}

.siren-domain-page .commerce-lookbook-cues span {
  background: rgba(255, 253, 248, 0.07);
}

.commerce-lookbook-cues strong {
  font-size: 0.72rem;
}

.commerce-lookbook-header button[data-open-lookbook] {
  position: relative;
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-header button[data-open-lookbook] {
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.18);
  box-shadow: 0 14px 32px rgba(7, 16, 20, 0.22);
  backdrop-filter: blur(16px);
}

.brand-domain-page.commerce-shop-page .commerce-lookbook-band:not(.is-group) .commerce-lookbook-header button[data-open-lookbook] {
  display: none;
}

.angel-domain-page .commerce-lookbook-band:not(.is-group) .commerce-lookbook-header button[data-open-lookbook] {
  color: #1a1a1a;
  border-color: rgba(26, 26, 26, 0.12);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 34px rgba(82, 66, 42, 0.16);
}

.commerce-lookbook-header button[data-open-lookbook] .commerce-icon {
  width: 17px;
  height: 17px;
}

.commerce-lookbook-header button[data-open-lookbook] span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-lookbook-header a,
.commerce-lookbook-header button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.commerce-lookbook-header a:hover,
.commerce-lookbook-header a:focus-visible,
.commerce-lookbook-header button:hover,
.commerce-lookbook-header button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--teal);
  background: rgba(255, 253, 248, 0.9);
}

.commerce-lookbook-header a .commerce-icon,
.commerce-lookbook-header button .commerce-icon {
  width: 14px;
  height: 14px;
}

.siren-domain-page .commerce-lookbook-header a,
.siren-domain-page .commerce-lookbook-header button {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(255, 253, 248, 0.06);
}

.siren-domain-page .commerce-lookbook-header a:hover,
.siren-domain-page .commerce-lookbook-header a:focus-visible,
.siren-domain-page .commerce-lookbook-header button:hover,
.siren-domain-page .commerce-lookbook-header button:focus-visible {
  color: #071014;
  border-color: var(--champagne);
  background: var(--champagne);
}

.commerce-lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-grid {
  order: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commerce-lookbook-card {
  position: relative;
  display: block;
  --lookbook-card-height: clamp(260px, 30vw, 360px);
  min-height: var(--lookbook-card-height);
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  border: 0;
  border-radius: 8px;
  font: inherit;
  text-align: left;
  text-decoration: none;
  background: #071014;
  cursor: pointer;
}

.commerce-lookbook-band.is-group .commerce-lookbook-card {
  --lookbook-card-height: clamp(210px, 22vw, 280px);
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-card {
  --lookbook-card-height: clamp(250px, 22vw, 330px);
}

.commerce-lookbook-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 20, 0.68));
}

.commerce-lookbook-card-view {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.92);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 253, 248, 0.3), transparent 42%),
    rgba(7, 16, 20, 0.34);
  box-shadow:
    0 0 0 5px rgba(7, 16, 20, 0.16),
    0 16px 34px rgba(7, 16, 20, 0.22);
  backdrop-filter: blur(14px) saturate(1.1);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: transform 260ms ease, opacity 260ms ease, background 260ms ease, border-color 260ms ease;
}

.commerce-lookbook-card-view .commerce-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.commerce-lookbook-card:hover .commerce-lookbook-card-view,
.commerce-lookbook-card:focus-visible .commerce-lookbook-card-view {
  border-color: rgba(255, 253, 248, 0.64);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 253, 248, 0.42), transparent 42%),
    rgba(7, 16, 20, 0.48);
  opacity: 1;
  transform: translate3d(-2px, 2px, 0) scale(1.04);
}

.angel-domain-page .commerce-lookbook-card-view {
  border-color: rgba(176, 132, 67, 0.28);
  color: rgba(26, 26, 26, 0.78);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 253, 248, 0.86), transparent 46%),
    rgba(255, 253, 248, 0.68);
  box-shadow:
    0 0 0 5px rgba(255, 253, 248, 0.4),
    0 16px 34px rgba(82, 66, 42, 0.16);
}

.angel-domain-page .commerce-lookbook-card:hover .commerce-lookbook-card-view,
.angel-domain-page .commerce-lookbook-card:focus-visible .commerce-lookbook-card-view {
  border-color: rgba(176, 132, 67, 0.46);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 253, 248, 0.96), transparent 46%),
    rgba(255, 253, 248, 0.82);
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-card::before {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.22);
  box-shadow:
    0 0 0 5px rgba(7, 16, 20, 0.22),
    0 10px 24px rgba(7, 16, 20, 0.2);
  content: "";
  backdrop-filter: blur(10px);
}

.angel-domain-page .commerce-lookbook-band:not(.is-group) .commerce-lookbook-card::before {
  border-color: rgba(26, 26, 26, 0.2);
  background: rgba(255, 253, 248, 0.72);
  box-shadow:
    0 0 0 5px rgba(255, 253, 248, 0.42),
    0 10px 24px rgba(82, 66, 42, 0.14);
}

.commerce-lookbook-card img {
  display: block;
  width: 100%;
  height: var(--lookbook-card-height);
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 760ms ease, filter 320ms ease;
}

.commerce-lookbook-card.is-siren img {
  filter: brightness(0.9) saturate(0.94) contrast(1.04);
}

.commerce-lookbook-card img[alt*="beach blanket"] {
  object-position: center 36%;
}

.commerce-lookbook-card:hover img,
.commerce-lookbook-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04);
}

.commerce-lookbook-card span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-lookbook-card strong {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 253, 248, 0.36);
  border-radius: 999px;
  background: rgba(10, 16, 18, 0.42);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.commerce-lookbook-band:not(.is-group) .commerce-lookbook-card strong {
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-lookbook-viewer-shell {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.commerce-lookbook-viewer-shell.is-open {
  opacity: 1;
  pointer-events: auto;
}

.commerce-lookbook-viewer-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.9), rgba(26, 26, 26, 0.62)),
    rgba(7, 16, 20, 0.72);
  backdrop-filter: blur(18px);
}

.commerce-lookbook-viewer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  width: min(1060px, calc(100vw - 32px));
  max-height: min(900px, calc(100dvh - 32px));
  aspect-ratio: 16 / 10;
  overflow: hidden;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.12), rgba(7, 16, 20, 0.9)),
    #071014;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  transform: translateY(10px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.commerce-lookbook-viewer-shell.is-open .commerce-lookbook-viewer {
  transform: translateY(0) scale(1);
}

.commerce-lookbook-viewer-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px;
  pointer-events: none;
}

.commerce-lookbook-viewer-top span,
.commerce-lookbook-viewer-copy > span,
.commerce-lookbook-viewer figcaption span {
  color: rgba(247, 244, 239, 0.72);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-lookbook-viewer-top h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.7rem);
  font-weight: 500;
  line-height: 0.98;
}

.commerce-lookbook-viewer-top button {
  pointer-events: auto;
}

.commerce-lookbook-viewer button,
.commerce-lookbook-viewer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  font: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.commerce-lookbook-viewer button span,
.commerce-lookbook-viewer a span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-lookbook-viewer button:hover,
.commerce-lookbook-viewer button:focus-visible,
.commerce-lookbook-viewer a:hover,
.commerce-lookbook-viewer a:focus-visible {
  transform: translateY(-1px);
  color: #071014;
  border-color: var(--paper);
  background: var(--paper);
}

.commerce-lookbook-viewer button:disabled {
  opacity: 0.44;
  cursor: not-allowed;
}

.commerce-lookbook-viewer button:disabled:hover {
  transform: none;
  color: var(--paper);
  background: rgba(255, 253, 248, 0.08);
}

.commerce-lookbook-viewer .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-lookbook-viewer [data-lookbook-prev] .commerce-icon {
  transform: rotate(180deg);
}

.commerce-lookbook-viewer figure {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #071014;
}

.commerce-lookbook-viewer figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 20, 0.62));
}

.commerce-lookbook-viewer img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(720px, calc(100dvh - 32px));
  object-fit: cover;
}

.commerce-lookbook-viewer.is-siren img {
  filter: brightness(0.92) saturate(0.96) contrast(1.04);
}

.commerce-lookbook-viewer figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  max-width: min(460px, calc(100% - 168px));
  gap: 10px;
  align-items: center;
}

.commerce-lookbook-viewer figcaption strong {
  padding: 8px 11px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 999px;
  background: rgba(10, 16, 18, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.commerce-lookbook-viewer-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  pointer-events: none;
}

.commerce-lookbook-viewer-copy > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-lookbook-viewer-copy p {
  max-width: 30ch;
  color: rgba(247, 244, 239, 0.76);
  line-height: 1.7;
}

.commerce-lookbook-viewer-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  pointer-events: auto;
}

.commerce-policy-confidence {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.1);
}

.commerce-policy-confidence::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 42%, rgba(84, 116, 123, 0.16) 50%, transparent 58%),
    radial-gradient(circle at 14% 18%, rgba(255, 253, 248, 0.58), transparent 32%);
  transform: translateX(-42%);
  opacity: 0;
  transition: opacity 260ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.commerce-policy-confidence:hover::before,
.commerce-policy-confidence:focus-within::before {
  transform: translateX(0);
  opacity: 1;
}

.siren-domain-page .commerce-policy-confidence {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(247, 244, 239, 0.14);
}

.siren-domain-page .commerce-policy-confidence::before {
  background:
    linear-gradient(112deg, transparent 0 42%, rgba(200, 169, 102, 0.16) 50%, transparent 58%),
    radial-gradient(circle at 14% 18%, rgba(200, 169, 102, 0.16), transparent 32%);
}

.commerce-policy-visual {
  position: relative;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #071014;
}

.commerce-policy-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 34%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.22), transparent 62%);
}

.commerce-policy-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.01);
  transition: transform 680ms ease, filter 320ms ease;
}

.commerce-policy-confidence:hover .commerce-policy-visual img,
.commerce-policy-confidence:focus-within .commerce-policy-visual img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.commerce-policy-visual figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 14px 14px;
  display: grid;
  gap: 6px;
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.commerce-policy-visual figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-policy-visual figcaption strong {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  font-weight: 500;
  line-height: 0.92;
}

.commerce-policy-body {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1px;
  min-width: 0;
  background: rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-policy-body {
  background: rgba(247, 244, 239, 0.12);
}

.commerce-policy-header,
.commerce-policy-card {
  background: rgba(255, 253, 248, 0.78);
}

.siren-domain-page .commerce-policy-header,
.siren-domain-page .commerce-policy-card {
  background: rgba(7, 16, 20, 0.5);
}

.angel-domain-page .commerce-policy-header,
.angel-domain-page .commerce-policy-card {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
}

.commerce-policy-header {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  min-width: 0;
}

.commerce-policy-header span,
.commerce-policy-card > span {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-policy-header span,
.siren-domain-page .commerce-policy-card > span {
  color: rgba(247, 244, 239, 0.68);
}

.angel-domain-page .commerce-policy-header span,
.angel-domain-page .commerce-policy-card > span {
  color: rgba(19, 57, 61, 0.7);
}

.commerce-policy-header strong {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.18rem);
  font-weight: 500;
  line-height: 0.98;
}

.commerce-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  min-width: 0;
  background: rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-policy-grid {
  background: rgba(247, 244, 239, 0.12);
}

.commerce-policy-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 8px;
  min-width: 0;
  min-height: 186px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.commerce-policy-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.18;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: opacity 220ms ease, transform 260ms ease;
}

.siren-domain-page .commerce-policy-card {
  color: var(--paper);
}

.commerce-policy-card:hover,
.commerce-policy-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.92);
}

.siren-domain-page .commerce-policy-card:hover,
.siren-domain-page .commerce-policy-card:focus-visible {
  background: rgba(255, 253, 248, 0.09);
}

.commerce-policy-card:hover::after,
.commerce-policy-card:focus-visible::after {
  opacity: 0.34;
  transform: scaleX(1);
}

.commerce-policy-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--teal);
  border: 1px solid rgba(84, 116, 123, 0.24);
  border-radius: 999px;
  background: rgba(216, 226, 223, 0.34);
}

.commerce-policy-icon .commerce-icon {
  width: 15px;
  height: 15px;
}

.siren-domain-page .commerce-policy-icon {
  color: var(--champagne);
  border-color: rgba(200, 169, 102, 0.28);
  background: rgba(200, 169, 102, 0.09);
}

.commerce-policy-card strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.02;
}

.commerce-policy-card p {
  max-width: 28ch;
  margin: 0;
  color: var(--smoke);
  font-size: 0.82rem;
  line-height: 1.5;
}

.siren-domain-page .commerce-policy-card p {
  color: rgba(247, 244, 239, 0.72);
}

.angel-domain-page .commerce-policy-card p {
  color: rgba(26, 26, 26, 0.72);
}

.commerce-policy-card em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  color: var(--teal);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-policy-card em {
  color: var(--champagne);
}

.commerce-policy-card em .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-saved-shelf {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.siren-domain-page .commerce-saved-shelf {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-saved-shelf p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.86rem;
  line-height: 1.5;
}

.siren-domain-page .commerce-saved-shelf p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-saved-shelf ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commerce-saved-shelf button {
  min-height: 38px;
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.14);
  background: rgba(255, 253, 248, 0.8);
}

.siren-domain-page .commerce-saved-shelf button {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(255, 253, 248, 0.07);
}

.commerce-saved-shelf button strong {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-watch-shelf {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.76);
}

.siren-domain-page .commerce-watch-shelf {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.09), rgba(200, 169, 102, 0.09)),
    rgba(255, 253, 248, 0.055);
}

.commerce-watch-shelf-copy {
  display: grid;
  gap: 7px;
  align-content: center;
  min-width: 0;
}

.commerce-watch-shelf-copy span,
.commerce-watch-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-watch-shelf-copy span,
.siren-domain-page .commerce-watch-card span {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-watch-shelf-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 0.98;
}

.commerce-watch-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.commerce-watch-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  min-height: 154px;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.siren-domain-page .commerce-watch-card {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(7, 16, 20, 0.5);
}

.commerce-watch-card img {
  width: 96px;
  height: 100%;
  min-height: 134px;
  border-radius: 6px;
  object-fit: cover;
}

.commerce-watch-card > div {
  display: grid;
  gap: 7px;
  align-content: center;
  min-width: 0;
}

.commerce-watch-card strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-watch-cues,
.commerce-watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.commerce-watch-cues em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 8px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.64);
  font-style: normal;
}

.siren-domain-page .commerce-watch-cues em {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.06);
}

.commerce-watch-cues small {
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.commerce-watch-cues .commerce-icon,
.commerce-watch-card span .commerce-icon {
  width: 12px;
  height: 12px;
}

.commerce-watch-actions button,
.commerce-watch-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  font: inherit;
  font-size: 0.64rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.commerce-watch-actions a {
  color: var(--ink);
  background: transparent;
}

.siren-domain-page .commerce-watch-actions button {
  color: #071014;
  border-color: var(--champagne);
  background: var(--champagne);
}

.siren-domain-page .commerce-watch-actions a {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  .commerce-watch-card,
  .commerce-watch-actions button,
  .commerce-watch-actions a {
    transition:
      border-color 220ms ease,
      box-shadow 280ms ease,
      transform 260ms ease;
  }

  .commerce-watch-card:hover,
  .commerce-watch-card:focus-within {
    box-shadow: 0 18px 44px rgba(26, 26, 26, 0.1);
    transform: translateY(-1px);
  }

  .commerce-watch-actions button:hover,
  .commerce-watch-actions button:focus-visible,
  .commerce-watch-actions a:hover,
  .commerce-watch-actions a:focus-visible {
    transform: translateY(-1px);
  }
}

.commerce-tide-list,
.commerce-product-grid,
.commerce-gateway-grid,
.commerce-ledger-grid {
  display: grid;
  gap: 18px;
}

.commerce-tide-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.12);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.siren-domain-page .commerce-tide-list {
  background: rgba(247, 244, 239, 0.14);
  border-color: rgba(247, 244, 239, 0.18);
}

.commerce-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.commerce-account-access-preview {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-account-access-preview {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(255, 253, 248, 0.06);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.commerce-account-access-preview figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: var(--ink);
}

.commerce-account-access-preview figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.58));
  pointer-events: none;
}

.commerce-account-access-preview img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.commerce-account-access-preview figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  gap: 5px;
  color: #fffaf0;
}

.commerce-account-access-preview figcaption span,
.commerce-account-access-copy > span,
.commerce-account-access-cues span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-account-access-preview figcaption strong,
.commerce-account-access-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
}

.commerce-account-access-preview figcaption strong {
  font-size: 2.2rem;
}

.commerce-account-access-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.commerce-account-access-copy h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--ink);
  font-size: 3.1rem;
}

.siren-domain-page .commerce-account-access-copy h2 {
  color: var(--ivory);
}

.commerce-account-access-cues {
  display: grid;
  gap: 8px;
}

.commerce-account-access-cues article {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.siren-domain-page .commerce-account-access-cues article {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-account-access-cues strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.05;
}

.commerce-account-access-cues small {
  color: var(--smoke);
  font-size: 0.76rem;
  line-height: 1.45;
}

.siren-domain-page .commerce-account-access-cues small {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-account-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.commerce-account-access-actions a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.commerce-account-access-actions a:first-child {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.siren-domain-page .commerce-account-access-actions a {
  border-color: rgba(247, 244, 239, 0.22);
  color: var(--ivory);
}

.siren-domain-page .commerce-account-access-actions a:first-child {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--ink);
}

.commerce-gateway-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commerce-tide-card,
.commerce-product-card,
.commerce-gateway-card,
.commerce-cart-card,
.commerce-auth-form,
.commerce-account-card,
.commerce-ledger-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

.siren-domain-page .commerce-tide-card,
.siren-domain-page .commerce-product-card,
.siren-domain-page .commerce-cart-card,
.siren-domain-page .commerce-auth-form,
.siren-domain-page .commerce-account-card,
.siren-domain-page .commerce-ledger-grid article {
  border-color: rgba(247, 244, 239, 0.2);
  background: rgba(255, 253, 248, 0.07);
}

.commerce-tide-card {
  display: grid;
  gap: 10px;
  min-height: 166px;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.84);
}

.siren-domain-page .commerce-tide-card {
  background: rgba(255, 253, 248, 0.055);
}

.commerce-tide-card > span,
.commerce-tide-card strong,
.commerce-product-meta span,
.commerce-ledger-grid span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-tide-card h2,
.commerce-product-card h2,
.commerce-gateway-card h2,
.commerce-cart-card h2,
.commerce-auth-form h2,
.commerce-account-card h2 {
  max-width: none;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.05;
}

.commerce-tide-card p,
.commerce-product-card p,
.commerce-gateway-card p,
.commerce-cart-card p,
.commerce-auth-form p,
.commerce-ledger-grid p {
  color: var(--smoke);
  font-size: 0.9rem;
  line-height: 1.7;
}

.siren-domain-page .commerce-tide-card p,
.siren-domain-page .commerce-product-card p,
.siren-domain-page .commerce-cart-card p,
.siren-domain-page .commerce-auth-form p,
.siren-domain-page .commerce-ledger-grid p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.12em;
}

.commerce-product-meta button,
.commerce-product-action,
.commerce-fit-actions button,
.commerce-fit-actions a,
.commerce-size-note button,
.commerce-fit-panel-actions button,
.commerce-fit-panel-actions a,
.commerce-checkout-form button[type="submit"],
.commerce-cart-open-button,
.commerce-cart-heading button,
.commerce-cart-item button,
.commerce-cart-drawer-top button,
.commerce-fit-drawer-top button,
.commerce-set-builder a,
.commerce-set-builder-action,
.commerce-saved-shelf a,
.commerce-mobile-buy-bar button,
.domain-button {
  gap: 8px;
}

.commerce-product-meta button span,
.commerce-product-action span,
.commerce-fit-actions button span,
.commerce-fit-actions a span,
.commerce-size-note button span,
.commerce-fit-panel-actions button span,
.commerce-fit-panel-actions a span,
.commerce-checkout-form button[type="submit"] span,
.commerce-cart-open-button span,
.commerce-cart-heading button span,
.commerce-cart-item button span,
.commerce-cart-drawer-top button span,
.commerce-fit-drawer-top button span,
.commerce-set-builder a span,
.commerce-set-builder-action span,
.commerce-saved-shelf a span,
.commerce-mobile-buy-bar button span,
.domain-button span {
  min-width: 0;
}

.commerce-tide-card.is-locked,
.commerce-product-card.is-locked,
.commerce-product-card.is-mystery,
.commerce-product-card.is-preview {
  color: inherit;
}

.commerce-product-card {
  --commerce-glow: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 520px;
  padding: 0;
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.08);
  transform: translateY(0);
  transition: --commerce-glow 400ms ease, transform 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
}

.commerce-product-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 253, 248, 0.22) 43%, transparent 61%);
  opacity: calc(var(--commerce-glow) * 0.72);
  transform: translateX(-62%);
  transition: opacity 420ms ease, transform 760ms ease;
}

.commerce-product-card:hover,
.commerce-product-card:focus-within {
  --commerce-glow: 1;
  border-color: rgba(200, 169, 102, 0.44);
  box-shadow: 0 28px 70px rgba(26, 26, 26, 0.14);
  transform: translateY(-4px);
}

.commerce-product-card:hover::before,
.commerce-product-card:focus-within::before {
  transform: translateX(62%);
}

.commerce-product-card.is-initiation {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  grid-template-rows: 1fr;
  min-height: 440px;
}

.siren-domain-page .commerce-product-card {
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
}

.commerce-product-visual {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  isolation: isolate;
}

.commerce-product-visual::before {
  position: absolute;
  z-index: 1;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.28);
  opacity: 0.72;
}

.commerce-product-card:not(.is-initiation) .commerce-product-visual {
  aspect-ratio: 4 / 3;
}

.commerce-product-card.is-initiation .commerce-product-visual {
  min-height: 100%;
}

.commerce-product-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: transparent;
  font-size: 0;
  object-fit: cover;
  transition: opacity 240ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
  will-change: opacity, transform, filter;
}

.commerce-product-viewer-trigger {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-viewer-trigger::before,
.commerce-product-grid.is-focused-shop-grid .commerce-product-viewer-trigger::after {
  position: absolute;
  display: block;
  pointer-events: none;
  content: "";
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-viewer-trigger::before {
  z-index: 2;
  left: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 244, 239, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.2), rgba(255, 253, 248, 0.08)),
    rgba(7, 16, 20, 0.42);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 253, 248, 0.18);
  backdrop-filter: blur(14px) saturate(1.12);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-viewer-trigger::after {
  z-index: 3;
  left: 29px;
  bottom: 29px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(247, 244, 239, 0.92);
  border-left: 2px solid rgba(247, 244, 239, 0.92);
  box-shadow: 7px 7px 0 -5px rgba(247, 244, 239, 0.92);
  opacity: 0.94;
  transform: rotate(0deg);
  transition: opacity 220ms ease, transform 220ms ease;
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-viewer-trigger::before {
  border-color: rgba(255, 253, 248, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(216, 226, 223, 0.32)),
    rgba(255, 253, 248, 0.62);
  box-shadow:
    0 14px 30px rgba(84, 116, 123, 0.16),
    inset 0 1px 0 rgba(255, 253, 248, 0.74);
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-viewer-trigger::after {
  border-color: rgba(26, 26, 26, 0.68);
  box-shadow: 7px 7px 0 -5px rgba(26, 26, 26, 0.68);
}

.commerce-product-viewer-trigger:focus-visible {
  outline: 2px solid rgba(200, 169, 102, 0.86);
  outline-offset: -6px;
}

.commerce-product-viewer-trigger:hover::before,
.commerce-product-viewer-trigger:focus-visible::before {
  border-color: rgba(200, 169, 102, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.28), rgba(255, 253, 248, 0.1)),
    rgba(7, 16, 20, 0.54);
  transform: translateY(-1px);
}

.angel-domain-page .commerce-product-viewer-trigger:hover::before,
.angel-domain-page .commerce-product-viewer-trigger:focus-visible::before {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(216, 226, 223, 0.42)),
    rgba(255, 253, 248, 0.76);
}

.commerce-product-viewer-trigger:hover::after,
.commerce-product-viewer-trigger:focus-visible::after {
  opacity: 1;
  transform: translate(1px, -1px);
}

.commerce-product-viewer-trigger img {
  display: block;
}

[data-commerce-gallery].is-gallery-transitioning [data-commerce-gallery-image] {
  opacity: 0.58;
  filter: saturate(1.06) contrast(1.04) blur(1.5px);
  transform: scale(1.016);
}

.commerce-product-card:hover .commerce-product-visual img,
.commerce-product-card:focus-within .commerce-product-visual img {
  transform: scale(1.025);
}

.commerce-product-grid.is-focused-shop-grid [data-focused-product-visual] {
  --focused-depth-x: 50%;
  --focused-depth-y: 42%;
  --focused-depth-shift-x: 0px;
  --focused-depth-shift-y: 0px;
  --focused-depth-scale: 1.012;
}

.commerce-product-grid.is-focused-shop-grid [data-focused-product-visual]::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--focused-depth-x) var(--focused-depth-y), rgba(255, 253, 248, 0.28), transparent 28%),
    linear-gradient(110deg, rgba(255, 253, 248, 0.08), transparent 44%, rgba(7, 16, 20, 0.2));
  mix-blend-mode: screen;
  opacity: 0.38;
  transition: opacity 420ms ease, background-position 420ms ease;
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid [data-focused-product-visual]::after {
  background:
    radial-gradient(circle at var(--focused-depth-x) var(--focused-depth-y), rgba(214, 192, 142, 0.26), transparent 30%),
    linear-gradient(110deg, rgba(247, 244, 239, 0.06), transparent 42%, rgba(0, 0, 0, 0.32));
  opacity: 0.34;
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid [data-focused-product-visual]::after {
  background:
    radial-gradient(circle at var(--focused-depth-x) var(--focused-depth-y), rgba(255, 253, 248, 0.44), transparent 30%),
    linear-gradient(110deg, rgba(255, 253, 248, 0.12), transparent 44%, rgba(160, 141, 107, 0.16));
  opacity: 0.42;
}

.commerce-product-grid.is-focused-shop-grid [data-focused-product-visual] img {
  transform: translate3d(var(--focused-depth-shift-x), var(--focused-depth-shift-y), 0) scale(var(--focused-depth-scale));
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card:hover [data-focused-product-visual],
.commerce-product-grid.is-focused-shop-grid .commerce-product-card:focus-within [data-focused-product-visual] {
  --focused-depth-scale: 1.026;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card:hover [data-focused-product-visual]::after,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card:focus-within [data-focused-product-visual]::after {
  opacity: 0.5;
}

.commerce-image-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.commerce-image-hotspots button {
  --hotspot-x: 50%;
  --hotspot-y: 50%;
  position: absolute;
  top: var(--hotspot-y);
  left: var(--hotspot-x);
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "pin label"
    "pin value";
  gap: 1px 7px;
  max-width: min(168px, 44%);
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(247, 244, 239, 0.32);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.46);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  cursor: pointer;
  pointer-events: auto;
  text-align: left;
  transform: translate(-50%, -50%);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.angel-domain-page .commerce-image-hotspots button {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.56);
  background: rgba(255, 253, 248, 0.54);
  box-shadow: 0 14px 30px rgba(84, 116, 123, 0.18);
}

.commerce-image-hotspots button:hover,
.commerce-image-hotspots button:focus-visible {
  border-color: rgba(200, 169, 102, 0.74);
  background: rgba(7, 16, 20, 0.64);
  transform: translate(-50%, -50%) scale(1.025);
}

.angel-domain-page .commerce-image-hotspots button:hover,
.angel-domain-page .commerce-image-hotspots button:focus-visible {
  background: rgba(255, 253, 248, 0.76);
}

.commerce-image-hotspots i {
  grid-area: pin;
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(255, 253, 248, 0.13);
  font-style: normal;
}

.angel-domain-page .commerce-image-hotspots i {
  color: var(--gold);
  background: rgba(84, 116, 123, 0.12);
}

.commerce-image-hotspots .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-image-hotspots span {
  grid-area: label;
  align-self: end;
  overflow: hidden;
  color: rgba(247, 244, 239, 0.76);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.angel-domain-page .commerce-image-hotspots span {
  color: rgba(26, 26, 26, 0.62);
}

.commerce-image-hotspots strong {
  grid-area: value;
  align-self: start;
  overflow: hidden;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-image-hotspots.is-card button {
  max-width: min(144px, 48%);
  padding: 7px;
}

.commerce-image-hotspots.is-card button:nth-child(2) {
  display: none;
}

.commerce-visual-action-tray {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  max-width: min(268px, calc(100% - 32px));
  pointer-events: auto;
}

.commerce-visual-action-tray button,
.commerce-visual-action-tray a {
  display: inline-grid;
  min-width: 54px;
  min-height: 44px;
  place-items: center;
  gap: 2px;
  padding: 7px 9px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.54);
  border: 1px solid rgba(247, 244, 239, 0.28);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font: inherit;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.angel-domain-page .commerce-visual-action-tray button,
.angel-domain-page .commerce-visual-action-tray a {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.58);
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 14px 30px rgba(84, 116, 123, 0.16);
}

.commerce-visual-action-tray button:hover,
.commerce-visual-action-tray button:focus-visible,
.commerce-visual-action-tray a:hover,
.commerce-visual-action-tray a:focus-visible {
  color: var(--ink);
  border-color: rgba(200, 169, 102, 0.72);
  background: rgba(255, 253, 248, 0.86);
  transform: translateY(-2px);
}

.siren-domain-page .commerce-visual-action-tray button:hover,
.siren-domain-page .commerce-visual-action-tray button:focus-visible,
.siren-domain-page .commerce-visual-action-tray a:hover,
.siren-domain-page .commerce-visual-action-tray a:focus-visible {
  color: #071014;
  background: var(--champagne);
}

.commerce-visual-action-tray .commerce-icon {
  width: 15px;
  height: 15px;
}

.commerce-product-detail-cue {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon value";
  gap: 1px 8px;
  min-width: 142px;
  max-width: min(210px, calc(100% - 32px));
  min-height: 46px;
  align-items: center;
  overflow: hidden;
  padding: 8px 12px;
  color: var(--paper);
  border: 1px solid rgba(247, 244, 239, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.14), rgba(7, 16, 20, 0.5)),
    rgba(7, 16, 20, 0.58);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  text-decoration: none;
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.commerce-product-fit-cue {
  position: absolute;
  z-index: 5;
  right: 16px;
  bottom: 70px;
  appearance: none;
  display: grid;
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  padding: 0;
  color: var(--paper);
  border: 1px solid rgba(247, 244, 239, 0.3);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.16), rgba(7, 16, 20, 0.5)),
    rgba(7, 16, 20, 0.58);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font: inherit;
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.angel-domain-page .commerce-product-fit-cue {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.42)),
    rgba(255, 253, 248, 0.62);
  box-shadow: 0 14px 30px rgba(84, 116, 123, 0.18);
}

.commerce-product-fit-cue:hover,
.commerce-product-fit-cue:focus-visible {
  border-color: rgba(200, 169, 102, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.22), rgba(7, 16, 20, 0.58)),
    rgba(7, 16, 20, 0.68);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.angel-domain-page .commerce-product-fit-cue:hover,
.angel-domain-page .commerce-product-fit-cue:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.56)),
    rgba(255, 253, 248, 0.78);
}

.commerce-product-fit-cue:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.commerce-product-fit-cue .commerce-icon {
  width: 17px;
  height: 17px;
  color: var(--champagne);
}

.angel-domain-page .commerce-product-fit-cue .commerce-icon {
  color: var(--teal);
}

.commerce-product-fit-cue span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-detail-cue::before {
  position: absolute;
  inset: -36% auto -36% -46%;
  width: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.42), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-130%) skewX(-14deg);
}

.siren-domain-page .commerce-product-detail-cue::before {
  background: linear-gradient(90deg, transparent, rgba(200, 169, 102, 0.42), transparent);
}

.angel-domain-page .commerce-product-detail-cue {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.42)),
    rgba(255, 253, 248, 0.62);
  box-shadow: 0 14px 30px rgba(84, 116, 123, 0.18);
}

.angel-domain-page .commerce-product-detail-cue::before {
  background: linear-gradient(90deg, transparent, rgba(216, 226, 223, 0.78), transparent);
}

.commerce-product-detail-cue:hover,
.commerce-product-detail-cue:focus-visible {
  border-color: rgba(200, 169, 102, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.22), rgba(7, 16, 20, 0.58)),
    rgba(7, 16, 20, 0.68);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.angel-domain-page .commerce-product-detail-cue:hover,
.angel-domain-page .commerce-product-detail-cue:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.56)),
    rgba(255, 253, 248, 0.78);
}

.commerce-product-detail-cue:hover::before,
.commerce-product-detail-cue:focus-visible::before {
  animation: commerce-material-sweep 1050ms ease both;
}

.commerce-product-detail-cue:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.commerce-product-detail-cue .commerce-icon {
  grid-area: icon;
  width: 16px;
  height: 16px;
  color: var(--champagne);
}

.commerce-product-detail-cue span {
  grid-area: label;
  overflow: hidden;
  color: rgba(247, 244, 239, 0.72);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.angel-domain-page .commerce-product-detail-cue span {
  color: rgba(26, 26, 26, 0.62);
}

.commerce-product-detail-cue strong {
  grid-area: value;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-product-visual:has(.commerce-product-detail-cue) figcaption {
  max-width: calc(100% - 198px);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-detail-cue {
  right: 16px;
  bottom: 16px;
  grid-template-areas: "icon";
  grid-template-columns: 1fr;
  justify-items: center;
  width: 46px;
  min-width: 46px;
  max-width: 46px;
  min-height: 46px;
  padding: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-detail-cue .commerce-icon {
  width: 17px;
  height: 17px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-detail-cue span,
.commerce-product-grid.is-focused-shop-grid .commerce-product-detail-cue strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-visual:has(.commerce-product-detail-cue) figcaption {
  max-width: calc(100% - 86px);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-visual:has(.commerce-product-fit-cue) figcaption {
  max-width: calc(100% - 86px);
}

.commerce-visual-action-tray strong {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.commerce-product-visual:has(.commerce-visual-action-tray) figcaption {
  bottom: 72px;
  max-width: calc(100% - 40px);
}

.commerce-hero-buy-media .commerce-visual-action-tray {
  right: 18px;
  bottom: 18px;
}

.commerce-product-visual::after {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 58%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.58));
}

.commerce-product-visual figcaption,
.commerce-image-badge,
.commerce-image-controls {
  position: absolute;
  z-index: 2;
}

.commerce-product-visual figcaption {
  left: 20px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  color: var(--paper);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.42);
}

.commerce-product-visual figcaption span,
.commerce-image-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-product-visual figcaption strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-visual figcaption,
.commerce-product-grid.is-focused-shop-grid .commerce-product-visual figcaption span,
.commerce-product-grid.is-focused-shop-grid .commerce-product-visual figcaption strong {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-visual::after {
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.34));
}

.commerce-image-badge {
  top: 16px;
  right: 16px;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.commerce-product-visual .commerce-image-badge {
  top: 60px;
}

.commerce-save-button {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: calc(100% - 32px);
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.commerce-save-button .commerce-icon {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.commerce-save-button strong {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-product-grid.is-focused-shop-grid .commerce-save-button {
  justify-content: center;
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  gap: 0;
  padding: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-save-button strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-save-button:hover,
.commerce-save-button:focus-visible,
.commerce-save-button[aria-pressed="true"] {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.siren-domain-page .commerce-save-button:hover,
.siren-domain-page .commerce-save-button:focus-visible,
.siren-domain-page .commerce-save-button[aria-pressed="true"] {
  color: #071014;
  border-color: var(--champagne);
  background: var(--champagne);
}

.commerce-image-controls {
  top: 16px;
  right: 16px;
  left: 16px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
  max-width: calc(100% - 32px);
}

.commerce-image-controls button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  max-width: 100%;
  padding: 4px 12px 4px 4px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.54);
  border-radius: 999px;
  background: rgba(10, 16, 18, 0.42);
  font: inherit;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.commerce-image-controls button img {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 253, 248, 0.24);
}

.commerce-image-controls button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop {
  top: 16px;
  right: auto;
  left: 16px;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  max-width: calc(100% - 92px);
  padding: 4px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.2), rgba(255, 253, 248, 0.06)),
    rgba(7, 16, 20, 0.36);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 253, 248, 0.24);
  backdrop-filter: blur(18px) saturate(1.16);
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop {
  border-color: rgba(255, 253, 248, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.32)),
    rgba(255, 253, 248, 0.58);
  box-shadow:
    0 18px 42px rgba(26, 26, 26, 0.14),
    inset 0 1px 0 rgba(255, 253, 248, 0.72);
}

.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button {
  position: relative;
  overflow: hidden;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 4px;
  border-color: rgba(255, 253, 248, 0.34);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.04)),
    rgba(7, 16, 20, 0.3);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 253, 248, 0.18);
}

.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button::after {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.86);
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 3px rgba(7, 16, 20, 0.42);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button::after {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(255, 253, 248, 0.76);
}

.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button:hover img,
.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button:focus-visible img,
.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button[aria-pressed="true"] img {
  transform: scale(1.08);
  filter: saturate(1.04) contrast(1.06);
}

.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button[aria-pressed="true"]::after {
  opacity: 1;
  transform: scale(1);
}

.commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-image-controls .commerce-icon {
  width: 12px;
  height: 12px;
  opacity: 0.78;
}

.commerce-image-controls button:hover,
.commerce-image-controls button:focus-visible,
.commerce-image-controls button[aria-pressed="true"] {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
}

.commerce-image-controls button:hover img,
.commerce-image-controls button:focus-visible img,
.commerce-image-controls button[aria-pressed="true"] img {
  box-shadow:
    0 0 0 1px rgba(26, 26, 26, 0.18),
    0 0 0 4px rgba(255, 253, 248, 0.42);
}

.commerce-product-visual.is-obscured img {
  filter: brightness(0.82) saturate(0.94) contrast(1.03);
  transform: scale(1.02);
}

.commerce-product-card:hover .commerce-product-visual.is-obscured img,
.commerce-product-card:focus-within .commerce-product-visual.is-obscured img {
  transform: scale(1.045);
}

.commerce-product-body {
  display: grid;
  gap: 18px;
  align-content: space-between;
  padding: 24px;
}

.commerce-product-card.is-initiation .commerce-product-body {
  padding: 34px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body {
  position: relative;
  isolation: isolate;
  align-content: start;
  overflow: hidden;
  gap: 14px;
  padding: 30px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body > * {
  position: relative;
  z-index: 1;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(200, 169, 102, 0.2), transparent 24%),
    radial-gradient(circle at 88% 44%, rgba(216, 226, 223, 0.14), transparent 28%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.82) 46%, transparent 92%);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::after {
  position: absolute;
  z-index: 0;
  inset: 43% 0 0;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.42)),
    var(--focused-panel-media, none);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  filter: saturate(1.04) contrast(1.06);
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 100%);
  transform: scale(1.015);
  transform-origin: center bottom;
  transition: opacity 420ms ease, transform 760ms ease, filter 420ms ease;
}

@supports (background: conic-gradient(from 0deg, #000, #fff)) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::before {
    background:
      radial-gradient(circle at 18% 16%, rgba(200, 169, 102, 0.22), transparent 24%),
      radial-gradient(circle at 88% 44%, rgba(216, 226, 223, 0.16), transparent 28%),
      conic-gradient(from 148deg at 72% 34%, transparent 0deg, rgba(255, 253, 248, 0.1) 58deg, transparent 114deg, rgba(200, 169, 102, 0.08) 196deg, transparent 282deg);
  }
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::after {
  opacity: 0.36;
  background-image:
    linear-gradient(180deg, rgba(7, 16, 20, 0), rgba(7, 16, 20, 0.56)),
    url("/assets/shop/siren-jersey-dune-walk-natural-20260605.jpg");
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(200, 169, 102, 0.24), transparent 26%),
    radial-gradient(circle at 88% 42%, rgba(19, 47, 51, 0.4), transparent 30%),
    conic-gradient(from 154deg at 72% 32%, transparent 0deg, rgba(200, 169, 102, 0.13) 62deg, transparent 118deg, rgba(255, 253, 248, 0.08) 206deg, transparent 288deg);
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::after {
  opacity: 0.34;
  background-image:
    linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.5)),
    url("/assets/shop/angel-jersey-porch-boardwalk-friends-20260605.jpg");
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::before {
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 253, 248, 0.54), transparent 25%),
    radial-gradient(circle at 86% 38%, rgba(216, 226, 223, 0.46), transparent 32%),
    conic-gradient(from 142deg at 70% 32%, transparent 0deg, rgba(200, 169, 102, 0.12) 56deg, transparent 112deg, rgba(255, 253, 248, 0.36) 210deg, transparent 286deg);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card[data-product-exact-media="true"].is-initiation .commerce-product-body::after,
.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card[data-product-exact-media="true"].is-initiation .commerce-product-body::after,
.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card[data-product-exact-media="true"].is-initiation .commerce-product-body::after {
  opacity: 0;
  background-image: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation:hover .commerce-product-body::after,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation:focus-within .commerce-product-body::after {
  opacity: 0.42;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.04) translateY(-1%);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card[data-product-exact-media="true"].is-initiation:hover .commerce-product-body::after,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card[data-product-exact-media="true"].is-initiation:focus-within .commerce-product-body::after {
  opacity: 0;
}

@media (min-width: 901px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation {
    height: clamp(620px, 50vw, 700px);
    min-height: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-visual,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body {
    min-height: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation:not(.is-shop-secondary) .commerce-product-visual img {
    object-position: center 18%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-body {
    grid-template-rows: auto minmax(280px, 1fr) auto;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available.is-initiation .commerce-product-body {
    grid-template-rows: auto auto auto minmax(170px, 1fr);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::before {
    opacity: 0.72;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::after {
    inset: auto 0 0;
    height: min(38%, 320px);
    mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-body::after {
    height: min(20%, 160px);
    opacity: 0.3;
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation {
  min-height: 0;
}

.commerce-secondary-product-strip {
  display: block;
}

.commerce-secondary-product-strip-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 8px;
}

.commerce-secondary-product-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.08);
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.commerce-secondary-product-frame:first-child {
  grid-row: 1 / span 2;
}

.commerce-secondary-product-strip-track:has(.commerce-secondary-product-frame:nth-child(2):last-child) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: minmax(0, 1fr);
}

.commerce-secondary-product-strip-track:has(.commerce-secondary-product-frame:nth-child(2):last-child) .commerce-secondary-product-frame:first-child {
  grid-row: auto;
}

.commerce-secondary-product-frame.is-shore {
  cursor: pointer;
}

.commerce-secondary-product-frame:not(button) {
  cursor: default;
}

.commerce-product-visual.commerce-secondary-product-strip .commerce-secondary-product-frame img {
  display: block;
  min-height: 0;
  object-fit: cover;
}

.commerce-secondary-product-frame span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(9, 17, 20, 0.5);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.angel-domain-page .commerce-secondary-product-frame span {
  border-color: rgba(70, 55, 45, 0.14);
  background: rgba(255, 253, 248, 0.62);
  color: var(--ink);
}

.commerce-secondary-product-frame .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-secondary-product-frame:focus-visible {
  outline: 2px solid rgba(200, 169, 102, 0.9);
  outline-offset: -4px;
}

@media (min-width: 901px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation {
    height: clamp(280px, 23vw, 328px);
    grid-template-columns: minmax(260px, 0.56fr) minmax(288px, 0.44fr);
    overflow: hidden;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-visual {
    min-height: 0;
    height: 100%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-visual img {
    height: 100%;
    object-position: center 50%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-secondary-product-frame:first-child img {
    object-position: center 42%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-secondary-product-frame:not(:first-child) img {
    object-position: center 34%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-visual-action-tray {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-fit-cue,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-detail-cue {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-image-controls.is-focused-shop {
    top: 12px;
    left: 12px;
    gap: 5px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-image-controls.is-focused-shop button {
    width: 38px;
    height: 38px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-body {
    align-content: center;
    gap: 8px;
    padding: 14px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-copy {
    gap: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-copy .eyebrow,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-fact-strip,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-stock-lens {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-copy h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available.is-initiation .commerce-product-body {
    grid-template-rows: auto auto;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available.is-initiation .commerce-purchase-row {
    grid-template-columns: 34px minmax(0, 1fr) minmax(116px, auto);
    gap: 8px;
    padding: 8px;
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-checkout-visual-plate {
  display: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-focused-signature {
  display: none;
}

@media (min-width: 901px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available[data-product-exact-media="true"]:not(.is-shop-secondary) .commerce-focused-signature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(82px, 0.28fr) minmax(0, 1fr);
    gap: 8px;
    align-self: start;
    min-height: 0;
    height: auto;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.11);
    border-radius: 12px;
    padding: 8px;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.72), rgba(216, 226, 223, 0.24)),
      rgba(255, 253, 248, 0.28);
    box-shadow:
      0 24px 64px rgba(26, 26, 26, 0.1),
      inset 0 1px 0 rgba(255, 253, 248, 0.46);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available[data-product-exact-media="true"]:not(.is-shop-secondary) .commerce-focused-signature {
    border-color: rgba(247, 244, 239, 0.13);
    background:
      radial-gradient(circle at 20% 18%, rgba(200, 169, 102, 0.12), transparent 34%),
      linear-gradient(145deg, rgba(255, 253, 248, 0.07), rgba(19, 47, 51, 0.24)),
      rgba(7, 16, 20, 0.2);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(247, 244, 239, 0.09);
  }

  .commerce-focused-signature::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
      linear-gradient(112deg, transparent 0 44%, rgba(255, 253, 248, 0.26) 48%, transparent 52%),
      repeating-linear-gradient(90deg, rgba(26, 26, 26, 0.035) 0 1px, transparent 1px 22px);
    opacity: 0.34;
    transform: translateX(-28%);
    transition: transform 760ms ease, opacity 340ms ease;
  }

  .siren-domain-page .commerce-focused-signature::before {
    background:
      linear-gradient(112deg, transparent 0 44%, rgba(214, 192, 142, 0.16) 48%, transparent 52%),
      repeating-linear-gradient(90deg, rgba(247, 244, 239, 0.06) 0 1px, transparent 1px 22px);
  }

  .commerce-product-card:hover .commerce-focused-signature::before,
  .commerce-product-card:focus-within .commerce-focused-signature::before {
    opacity: 0.52;
    transform: translateX(18%);
  }

  .commerce-focused-signature-orbit {
    position: relative;
    isolation: isolate;
    display: grid;
    min-width: 0;
    min-height: 86px;
    place-items: center;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 10px;
    background:
      radial-gradient(circle at 50% 50%, rgba(255, 253, 248, 0.72), transparent 42%),
      conic-gradient(from 36deg, rgba(200, 169, 102, 0.22), rgba(216, 226, 223, 0.14), rgba(200, 169, 102, 0.22));
    overflow: hidden;
  }

  .siren-domain-page .commerce-focused-signature-orbit {
    border-color: rgba(247, 244, 239, 0.12);
    background:
      radial-gradient(circle at 50% 50%, rgba(7, 16, 20, 0.72), transparent 42%),
      conic-gradient(from 36deg, rgba(214, 192, 142, 0.24), rgba(19, 47, 51, 0.28), rgba(214, 192, 142, 0.22));
  }

  .commerce-focused-signature-orbit::before,
  .commerce-focused-signature-orbit::after {
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 50%;
    pointer-events: none;
    content: "";
  }

  .commerce-focused-signature-orbit::after {
    inset: 30px;
    border-style: dashed;
    opacity: 0.58;
  }

  .siren-domain-page .commerce-focused-signature-orbit::before,
  .siren-domain-page .commerce-focused-signature-orbit::after {
    border-color: rgba(247, 244, 239, 0.18);
  }

  .commerce-focused-signature-orbit span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(200, 169, 102, 0.28);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.78);
    color: var(--gold);
    box-shadow:
      0 10px 22px rgba(26, 26, 26, 0.12),
      0 0 0 calc(2px + (var(--signature-index, 0) * 1px)) rgba(200, 169, 102, 0.06);
    transform:
      translate(-50%, -50%)
      rotate(calc((var(--signature-index, 0) * 120deg) - 90deg))
      translate(31px)
      rotate(calc((var(--signature-index, 0) * -120deg) + 90deg));
  }

  .siren-domain-page .commerce-focused-signature-orbit span {
    border-color: rgba(214, 192, 142, 0.34);
    background: rgba(7, 16, 20, 0.7);
    color: var(--champagne);
    box-shadow:
      0 12px 26px rgba(0, 0, 0, 0.28),
      0 0 0 calc(2px + (var(--signature-index, 0) * 1px)) rgba(214, 192, 142, 0.08);
  }

  .commerce-focused-signature-orbit .commerce-icon {
    width: 12px;
    height: 12px;
  }

  .commerce-focused-signature-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .commerce-focused-signature-list li {
    position: relative;
    display: grid;
    grid-template-rows: 23px minmax(0, auto);
    gap: 5px;
    align-items: center;
    justify-items: stretch;
    min-width: 0;
    min-height: 62px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 9px;
    padding: 6px;
    background: rgba(255, 253, 248, 0.52);
  }

  .siren-domain-page .commerce-focused-signature-list li {
    border-color: rgba(247, 244, 239, 0.12);
    background: rgba(7, 16, 20, 0.32);
  }

  .commerce-focused-signature-icon {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border: 1px solid rgba(200, 169, 102, 0.22);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(255, 253, 248, 0.58);
  }

  .siren-domain-page .commerce-focused-signature-icon {
    border-color: rgba(214, 192, 142, 0.24);
    color: var(--champagne);
    background: rgba(255, 253, 248, 0.07);
  }

  .commerce-focused-signature-icon .commerce-icon {
    width: 11px;
    height: 11px;
  }

  .commerce-focused-signature-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .commerce-focused-signature-copy span,
  .commerce-focused-signature-copy strong {
    display: none;
  }

  .commerce-focused-signature-copy span {
    color: var(--smoke);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .siren-domain-page .commerce-focused-signature-copy span {
    color: rgba(247, 244, 239, 0.58);
  }

  .commerce-focused-signature-copy strong {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 0.95;
  }

  .siren-domain-page .commerce-focused-signature-copy strong {
    color: rgba(247, 244, 239, 0.9);
  }

  .commerce-focused-signature-list .commerce-fit-meter-track b {
    height: 7px;
  }

  .commerce-focused-signature-list li[data-meter-level="1"] .commerce-fit-meter-track b:first-child,
  .commerce-focused-signature-list li[data-meter-level="2"] .commerce-fit-meter-track b:first-child,
  .commerce-focused-signature-list li[data-meter-level="2"] .commerce-fit-meter-track b:nth-child(2),
  .commerce-focused-signature-list li[data-meter-level="3"] .commerce-fit-meter-track b {
    background: linear-gradient(90deg, var(--gold), var(--champagne));
    box-shadow: 0 0 16px rgba(200, 169, 102, 0.28);
    opacity: 1;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available.is-initiation .commerce-checkout-visual-plate {
    position: relative;
    display: block;
    align-self: stretch;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.36);
    box-shadow:
      0 24px 64px rgba(26, 26, 26, 0.12),
      inset 0 1px 0 rgba(255, 253, 248, 0.32);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available.is-initiation .commerce-checkout-visual-plate {
    border-color: rgba(247, 244, 239, 0.14);
    background: rgba(7, 16, 20, 0.2);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(247, 244, 239, 0.1);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-checkout-visual-plate::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
      linear-gradient(180deg, rgba(7, 16, 20, 0.04), rgba(7, 16, 20, 0.48)),
      radial-gradient(circle at 18% 18%, rgba(255, 253, 248, 0.26), transparent 34%);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-checkout-visual-plate::after {
    background:
      linear-gradient(180deg, rgba(7, 16, 20, 0.02), rgba(7, 16, 20, 0.32)),
      radial-gradient(circle at 18% 18%, rgba(214, 192, 142, 0.16), transparent 34%);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-checkout-visual-plate img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    opacity: 0.58;
    filter: saturate(1.06) contrast(1.05);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-checkout-visual-plate img {
    opacity: 0.72;
    filter: saturate(1.08) contrast(1.04) brightness(1.03);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-checkout-visual-plate span {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 253, 248, 0.46);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.18);
    color: var(--paper);
    backdrop-filter: blur(16px);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-checkout-visual-plate .commerce-icon {
    width: 15px;
    height: 15px;
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-option[data-sold-out="true"],
.commerce-product-grid.is-focused-shop-grid .commerce-purchase-row.is-preview:not(.is-sold-out) .commerce-size-grid,
.commerce-product-grid.is-focused-shop-grid .commerce-purchase-row.is-preview:not(.is-sold-out) .commerce-quantity-control {
  display: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-options {
  grid-template-columns: minmax(0, 1fr);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-copy > .eyebrow {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip span {
  display: inline-flex;
  flex: 0 0 38px;
  width: 38px;
  min-height: 38px;
  gap: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  text-align: center;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip span:nth-child(2),
.commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip span:nth-child(3) {
  flex-grow: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip .commerce-icon {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip em {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip strong {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-focused-shore-strip {
  display: block;
  min-width: 0;
}

.commerce-focused-shore-track {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.91fr));
  gap: 7px;
  height: clamp(82px, 8.2vw, 104px);
  min-width: 0;
}

.commerce-focused-shore-frame {
  position: relative;
  isolation: isolate;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 14px;
  background: rgba(7, 16, 20, 0.22);
  box-shadow:
    0 14px 34px rgba(26, 26, 26, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.2);
  cursor: pointer;
}

.commerce-focused-shore-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.02) 0%, rgba(7, 16, 20, 0.18) 54%, rgba(7, 16, 20, 0.5) 100%),
    radial-gradient(circle at 18% 14%, rgba(255, 253, 248, 0.18), transparent 34%);
}

.commerce-focused-shore-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 320ms ease;
}

.commerce-focused-shore-frame span {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 50%;
  background: rgba(7, 16, 20, 0.48);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 253, 248, 0.16);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.angel-domain-page .commerce-focused-shore-frame {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.58);
  background: rgba(255, 253, 248, 0.44);
  box-shadow:
    0 14px 34px rgba(84, 116, 123, 0.14),
    inset 0 1px 0 rgba(255, 253, 248, 0.54);
}

.angel-domain-page .commerce-focused-shore-frame::after {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04) 0%, rgba(255, 253, 248, 0.14) 52%, rgba(124, 74, 56, 0.28) 100%),
    radial-gradient(circle at 18% 14%, rgba(255, 253, 248, 0.36), transparent 34%);
}

.angel-domain-page .commerce-focused-shore-frame span {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.68);
  background: rgba(255, 253, 248, 0.74);
  box-shadow:
    0 10px 22px rgba(26, 26, 26, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.76);
}

.commerce-focused-shore-frame .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-focused-shore-frame:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .commerce-focused-shore-frame:hover img,
  .commerce-focused-shore-frame:focus-visible img {
    filter: saturate(1.1) contrast(1.07);
    transform: scale(1.055);
  }
}

.commerce-stock-lens {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  min-width: 0;
  padding: 6px 8px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.24)),
    rgba(255, 253, 248, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.64);
}

.siren-domain-page .commerce-stock-lens {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.08)),
    rgba(7, 16, 20, 0.22);
  box-shadow: inset 0 1px 0 rgba(247, 244, 239, 0.08);
}

.commerce-stock-lens-head,
.commerce-stock-lens-rail {
  display: flex;
  min-width: 0;
  align-items: center;
}

.commerce-stock-lens-head {
  justify-content: flex-start;
  gap: 6px;
  color: var(--smoke);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.siren-domain-page .commerce-stock-lens-head {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-stock-lens-head .commerce-icon {
  width: 12px;
  height: 12px;
  color: var(--teal);
}

.commerce-stock-lens-head strong {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.siren-domain-page .commerce-stock-lens-head .commerce-icon {
  color: var(--champagne);
}

.commerce-stock-lens-grid {
  display: flex;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  gap: 6px;
  align-items: center;
}

.commerce-stock-lens-rail {
  flex: 1 1 0;
  gap: 6px;
  padding: 4px 6px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.54);
}

.siren-domain-page .commerce-stock-lens-rail {
  border-color: rgba(247, 244, 239, 0.1);
  background: rgba(255, 253, 248, 0.045);
}

.commerce-stock-lens-rail > span,
.commerce-stock-lens-rail > strong {
  display: inline-grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.5rem;
  font-weight: 900;
  line-height: 1;
}

.commerce-stock-lens-rail > span {
  color: var(--teal);
  background: rgba(34, 94, 100, 0.1);
}

.siren-domain-page .commerce-stock-lens-rail > span {
  color: var(--champagne);
  background: rgba(214, 192, 142, 0.13);
}

.commerce-stock-lens-rail > strong {
  color: var(--paper);
  background: var(--teal);
}

.siren-domain-page .commerce-stock-lens-rail > strong {
  color: #071014;
  background: var(--champagne);
}

.commerce-stock-lens-sizes {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  gap: 5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.commerce-stock-lens-sizes em {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 8px;
  min-width: 8px;
  height: 8px;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.56);
  font-size: 0;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.siren-domain-page .commerce-stock-lens-sizes em {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.12);
  background: rgba(255, 253, 248, 0.08);
}

.commerce-stock-lens-sizes em[data-stock="available"] {
  border-color: rgba(34, 94, 100, 0.48);
  background: var(--teal);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.36),
    0 0 0 2px rgba(34, 94, 100, 0.08);
}

.siren-domain-page .commerce-stock-lens-sizes em[data-stock="available"] {
  border-color: rgba(214, 192, 142, 0.34);
  background: var(--champagne);
}

.commerce-stock-lens-sizes em[data-stock="paused"] {
  color: rgba(26, 26, 26, 0.42);
  background: transparent;
}

.siren-domain-page .commerce-stock-lens-sizes em[data-stock="paused"] {
  color: rgba(247, 244, 239, 0.34);
  background: rgba(255, 253, 248, 0.035);
}

.commerce-stock-lens-sizes em[data-stock="paused"]::after {
  position: absolute;
  inset: 50% -1px auto;
  height: 1px;
  content: "";
  background: currentColor;
  transform: rotate(-18deg);
  transform-origin: center;
}

.commerce-product-grid.is-focused-shop-grid .commerce-swatch-label,
.commerce-product-grid.is-focused-shop-grid .commerce-inventory-note {
  display: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-option small {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-control {
  position: relative;
  min-height: 40px;
  padding-left: 38px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-control legend,
.commerce-product-grid.is-focused-shop-grid .commerce-quantity-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  padding: 0;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  color: var(--smoke);
  line-height: 1;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-control legend {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-size-control legend,
.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-quantity-label {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(255, 253, 248, 0.06);
  color: rgba(247, 244, 239, 0.68);
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-label-icon,
.commerce-product-grid.is-focused-shop-grid .commerce-quantity-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-label-icon .commerce-icon,
.commerce-product-grid.is-focused-shop-grid .commerce-quantity-label-icon .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-label-text,
.commerce-product-grid.is-focused-shop-grid .commerce-quantity-label-text {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-swatch-row {
  margin-top: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-purchase-row {
  gap: 10px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-control {
  gap: 8px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-options {
  width: 100%;
}

.commerce-product-grid.is-focused-shop-grid .commerce-quantity-control {
  display: flex;
  gap: 8px;
  align-items: center;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look {
  grid-column: 1 / -1;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 8px;
  min-height: 52px;
  padding: 6px 8px 6px 6px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look img {
  width: 42px;
  height: 42px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look span {
  font-size: 0.56rem;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look strong {
  font-size: 0.92rem;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look small {
  display: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look em {
  min-width: 42px;
  min-height: 28px;
  padding: 0 8px;
  font-size: 0.56rem;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-meta {
  align-self: start;
  margin-top: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview .commerce-product-meta {
  justify-content: flex-end;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview .commerce-product-meta > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 861px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    position: relative;
    isolation: isolate;
    align-self: stretch;
    width: 100%;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px 16px 8px 8px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.74), rgba(216, 226, 223, 0.22)),
      rgba(255, 253, 248, 0.52);
    box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.48);
    backdrop-filter: blur(18px);
    transition: border-color 320ms ease, box-shadow 420ms ease, transform 420ms ease;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row::after,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta::after {
    position: absolute;
    z-index: 0;
    inset: -45% -32%;
    pointer-events: none;
    content: "";
    opacity: 0;
    background:
      linear-gradient(112deg, transparent 0 42%, rgba(255, 253, 248, 0.54) 49%, transparent 58%),
      radial-gradient(circle at 78% 18%, rgba(200, 169, 102, 0.22), transparent 34%);
    transform: translateX(-48%) skewX(-12deg);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row > *,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta > * {
    position: relative;
    z-index: 1;
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    border-color: rgba(247, 244, 239, 0.14);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.08)),
      rgba(255, 253, 248, 0.035);
    box-shadow: inset 0 1px 0 rgba(247, 244, 239, 0.1);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(68px, auto) minmax(172px, 1fr);
    gap: 12px;
    align-items: center;
    align-self: stretch;
    width: 100%;
    margin-top: -6px;
    padding: 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 8px 8px 18px 18px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.28)),
      rgba(255, 253, 248, 0.72);
    box-shadow:
      0 18px 42px rgba(26, 26, 26, 0.08),
      inset 0 1px 0 rgba(255, 253, 248, 0.6);
    backdrop-filter: blur(18px);
    transition: border-color 320ms ease, box-shadow 420ms ease, transform 420ms ease;
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta {
    border-color: rgba(247, 244, 239, 0.15);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.11), rgba(214, 192, 142, 0.1)),
      rgba(7, 16, 20, 0.34);
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(247, 244, 239, 0.1);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.62);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta > span {
    border-color: rgba(247, 244, 239, 0.14);
    background: rgba(255, 253, 248, 0.06);
    color: rgba(247, 244, 239, 0.86);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-action {
    justify-self: stretch;
    width: 100%;
    min-height: 46px;
    padding-inline: 16px;
    box-shadow: 0 10px 24px rgba(26, 26, 26, 0.12);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta button,
  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-action {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:hover .commerce-purchase-row,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:focus-within .commerce-purchase-row,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:hover .commerce-product-meta,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:focus-within .commerce-product-meta {
    border-color: rgba(200, 169, 102, 0.36);
    box-shadow:
      0 22px 54px rgba(26, 26, 26, 0.12),
      inset 0 1px 0 rgba(255, 253, 248, 0.62);
    transform: translateY(-1px);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:hover .commerce-purchase-row,
  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:focus-within .commerce-purchase-row,
  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:hover .commerce-product-meta,
  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:focus-within .commerce-product-meta {
    border-color: rgba(214, 192, 142, 0.42);
    box-shadow:
      0 24px 58px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(247, 244, 239, 0.14);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:hover .commerce-purchase-row::after,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:focus-within .commerce-purchase-row::after,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:hover .commerce-product-meta::after,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:focus-within .commerce-product-meta::after {
    animation: commerce-dock-sheen 1250ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-note {
  display: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-size-note-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(26, 26, 26, 0.08);
  background: rgba(255, 253, 248, 0.66);
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only {
  display: block;
  min-height: 190px;
  border-radius: 14px;
  background: rgba(7, 16, 20, 0.24);
  box-shadow:
    0 22px 60px rgba(26, 26, 26, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.32);
}

@media (min-width: 901px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-preview-access-panel {
    align-self: stretch;
    min-height: 0;
    height: 100%;
    border-radius: 14px;
    box-shadow:
      0 24px 64px rgba(124, 74, 56, 0.1),
      inset 0 1px 0 rgba(255, 253, 248, 0.68);
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.7)),
    linear-gradient(90deg, rgba(255, 253, 248, 0.1), rgba(255, 253, 248, 0.46));
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only::after {
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.05) 0%, rgba(7, 16, 20, 0.18) 46%, rgba(7, 16, 20, 0.68) 100%),
    linear-gradient(90deg, rgba(7, 16, 20, 0.12), transparent 62%);
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only::after {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04) 0%, rgba(255, 253, 248, 0.18) 50%, rgba(124, 74, 56, 0.34) 100%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.18), transparent 62%);
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.02) contrast(1.02);
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only img {
  opacity: 1;
  filter: saturate(0.96) contrast(1.04);
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel > div {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 142px;
  padding: 14px;
  align-content: end;
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only .commerce-preview-access-overlay {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  min-height: 190px;
}

@media (min-width: 901px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-preview-access-panel > div {
    min-height: 100%;
    padding: 16px;
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(14px);
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  color: var(--paper);
  border-color: rgba(255, 253, 248, 0.24);
  background: rgba(7, 16, 20, 0.46);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 253, 248, 0.18);
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only span {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.64);
  background: rgba(255, 253, 248, 0.76);
  box-shadow:
    0 12px 28px rgba(26, 26, 26, 0.14),
    inset 0 1px 0 rgba(255, 253, 248, 0.72);
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel .commerce-restock-cues {
  display: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only .commerce-preview-access-chip {
  position: static;
  right: auto;
  bottom: auto;
  grid-column: 2;
  justify-self: end;
  white-space: nowrap;
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only .commerce-preview-access-cues {
  position: relative;
  z-index: 1;
  display: flex;
  grid-column: 1;
  align-self: end;
  min-width: 0;
  max-width: 100%;
  gap: 6px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only .commerce-preview-access-cues em {
  min-height: 34px;
  padding: 7px 9px;
  color: var(--paper);
  border-color: rgba(255, 253, 248, 0.24);
  background: rgba(7, 16, 20, 0.46);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 253, 248, 0.16);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only .commerce-preview-access-cues em {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.74);
  box-shadow:
    0 12px 28px rgba(26, 26, 26, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.72);
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only .commerce-preview-access-cues .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only .commerce-preview-access-cues small {
  font-size: 0.56rem;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only .commerce-preview-access-cues em {
    transition:
      border-color 280ms ease,
      box-shadow 320ms ease,
      transform 320ms ease;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only:hover .commerce-preview-access-cues em,
  .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only:focus-within .commerce-preview-access-cues em {
    border-color: rgba(255, 253, 248, 0.42);
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 253, 248, 0.24);
    transform: translateY(-2px);
  }

  .angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only:hover .commerce-preview-access-cues em,
  .angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only:focus-within .commerce-preview-access-cues em {
    border-color: rgba(255, 253, 248, 0.82);
    box-shadow:
      0 16px 34px rgba(26, 26, 26, 0.16),
      inset 0 1px 0 rgba(255, 253, 248, 0.82);
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary {
  position: relative;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 8px;
  min-height: 44px;
  padding: 6px 8px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-icon {
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  padding: 8px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 50%;
  background: rgba(124, 74, 56, 0.08);
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-icon {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(247, 244, 239, 0.08);
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary strong {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  font-size: 0.66rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-gauge {
  position: static;
  display: inline-grid;
  grid-template-columns: repeat(3, 10px);
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 42px;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-gauge i {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.44);
  opacity: 0.46;
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-cue[data-meter-level="1"] .commerce-fit-support-gauge i:nth-child(1),
.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-cue[data-meter-level="2"] .commerce-fit-support-gauge i:nth-child(-n + 2),
.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-cue[data-meter-level="3"] .commerce-fit-support-gauge i {
  border-color: rgba(200, 169, 102, 0.5);
  background: var(--champagne);
  opacity: 1;
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-gauge i {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(247, 244, 239, 0.12);
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-cue[data-meter-level="1"] .commerce-fit-support-gauge i:nth-child(1),
.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-cue[data-meter-level="2"] .commerce-fit-support-gauge i:nth-child(-n + 2),
.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-fit-support-cue[data-meter-level="3"] .commerce-fit-support-gauge i {
  border-color: rgba(214, 192, 142, 0.58);
  background: var(--champagne);
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary::after {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 50%;
  font-size: 1.08rem;
  background: rgba(255, 253, 248, 0.58);
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary::after {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(247, 244, 239, 0.08);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-checkout-trust-rail {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-checkout-trust-item {
  width: 1px;
  min-width: 0;
  max-width: 1px;
  min-height: 1px;
  gap: 0;
  padding: 0;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-checkout-trust-item .commerce-icon {
  display: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-checkout-trust-item span {
  position: static;
}

.commerce-product-copy {
  display: grid;
  gap: 10px;
}

.commerce-product-card:not(.commerce-hero-buy-card) .commerce-product-copy > p:not(.eyebrow) {
  display: -webkit-box;
  max-width: 58ch;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.commerce-product-fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.commerce-product-fact-strip span {
  display: grid;
  min-width: 0;
  gap: 5px;
  align-content: start;
  min-height: 84px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.74), rgba(255, 253, 248, 0.48)),
    rgba(255, 253, 248, 0.66);
}

.siren-domain-page .commerce-product-fact-strip span {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-product-fact-strip .commerce-icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.siren-domain-page .commerce-product-fact-strip .commerce-icon {
  color: var(--champagne);
}

.commerce-product-fact-strip em {
  color: var(--smoke);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.siren-domain-page .commerce-product-fact-strip em {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-product-fact-strip strong {
  min-width: 0;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.commerce-swatch-row,
.commerce-product-signal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.commerce-swatch-row {
  margin-top: 2px;
}

.commerce-swatch-label,
.commerce-product-signal-list span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-swatch-label {
  color: var(--smoke);
}

.siren-domain-page .commerce-swatch-label {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-swatch-list {
  display: inline-flex;
  gap: 5px;
}

.commerce-swatch {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 253, 248, 0.7);
}

.siren-domain-page .commerce-swatch {
  border-color: rgba(247, 244, 239, 0.22);
  box-shadow: inset 0 0 0 3px rgba(7, 16, 20, 0.62);
}

.commerce-swatch.is-siren-ink {
  background: #050708;
}

.commerce-swatch.is-siren-plum {
  background: #3f2037;
}

.commerce-swatch.is-night-glass {
  background: linear-gradient(135deg, #0c1a1d, #54747b);
}

.commerce-swatch.is-angel-ivory {
  background: #f4efe4;
}

.commerce-swatch.is-angel-seaglass {
  background: #d8e2df;
}

.commerce-swatch.is-soft-gold {
  background: #c8a966;
}

.commerce-swatch.is-moon-shadow {
  background: linear-gradient(135deg, #f4efe4, #8c938c);
}

.commerce-product-signal-list span {
  padding: 7px 9px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.76);
}

.siren-domain-page .commerce-product-signal-list span {
  color: rgba(247, 244, 239, 0.86);
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.06);
}

.commerce-fit-meter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 169, 102, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.72);
}

.commerce-fit-meter::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 253, 248, 0.5) 48%, transparent 64%),
    repeating-linear-gradient(90deg, rgba(26, 26, 26, 0.04) 0 1px, transparent 1px 16px);
  opacity: calc(0.2 + (var(--commerce-glow) * 0.26));
  transform: translateX(calc(var(--commerce-glow) * 9px));
  transition: opacity 360ms ease, transform 520ms ease;
}

.siren-domain-page .commerce-fit-meter {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 169, 102, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.09), rgba(84, 116, 123, 0.1));
  box-shadow: inset 0 1px 0 rgba(247, 244, 239, 0.08);
}

.commerce-fit-meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.commerce-fit-meter-head span,
.commerce-fit-meter-head strong,
.commerce-fit-meter-copy span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-fit-meter-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
}

.siren-domain-page .commerce-fit-meter-head span {
  color: rgba(247, 244, 239, 0.88);
}

.commerce-fit-meter-head .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.commerce-fit-meter-head strong {
  min-width: 0;
  overflow: hidden;
  color: var(--smoke);
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.siren-domain-page .commerce-fit-meter-head strong {
  color: rgba(247, 244, 239, 0.64);
}

.commerce-fit-meter-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.09);
  border-radius: 7px;
  background: rgba(26, 26, 26, 0.1);
  list-style: none;
}

.siren-domain-page .commerce-fit-meter-list {
  border-color: rgba(247, 244, 239, 0.12);
  background: rgba(247, 244, 239, 0.12);
}

.commerce-fit-meter-item {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 114px;
  align-content: space-between;
  gap: 10px;
  padding: 11px;
  background: rgba(255, 253, 248, 0.76);
}

.siren-domain-page .commerce-fit-meter-item {
  background: rgba(255, 253, 248, 0.055);
}

.commerce-fit-meter-item::before {
  position: absolute;
  inset: 0 0 auto;
  height: 44%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 24% 18%, rgba(200, 169, 102, 0.22), transparent 54%);
  opacity: 0.72;
}

.commerce-fit-meter-icon {
  position: relative;
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 102, 0.26);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.66);
}

.siren-domain-page .commerce-fit-meter-icon {
  background: rgba(7, 16, 20, 0.22);
}

.commerce-fit-meter-icon .commerce-icon {
  width: 15px;
  height: 15px;
}

.commerce-fit-meter-copy {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 3px;
}

.commerce-fit-meter-copy span {
  color: var(--smoke);
}

.siren-domain-page .commerce-fit-meter-copy span {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-fit-meter-copy strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  font-weight: 500;
  line-height: 0.98;
}

.siren-domain-page .commerce-fit-meter-copy strong {
  color: rgba(247, 244, 239, 0.92);
}

.commerce-fit-meter-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.commerce-fit-meter-track b {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.11);
  opacity: 0.38;
  transition: background 240ms ease, opacity 240ms ease, box-shadow 240ms ease;
}

.siren-domain-page .commerce-fit-meter-track b {
  background: rgba(247, 244, 239, 0.16);
}

.commerce-fit-meter-item[data-meter-level="1"] .commerce-fit-meter-track b:first-child,
.commerce-fit-meter-item[data-meter-level="2"] .commerce-fit-meter-track b:first-child,
.commerce-fit-meter-item[data-meter-level="2"] .commerce-fit-meter-track b:nth-child(2),
.commerce-fit-meter-item[data-meter-level="3"] .commerce-fit-meter-track b {
  background: linear-gradient(90deg, var(--gold), var(--champagne));
  box-shadow: 0 0 18px rgba(200, 169, 102, 0.3);
  opacity: 1;
}

.commerce-hero-buy-card .commerce-fit-meter {
  padding: 10px;
}

.commerce-hero-buy-card .commerce-fit-meter-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commerce-hero-buy-card .commerce-fit-meter-item {
  min-height: 96px;
  padding: 10px;
}

.commerce-hero-buy-card .commerce-fit-meter-icon {
  width: 28px;
  height: 28px;
}

.commerce-hero-buy-card .commerce-fit-meter-copy strong {
  font-size: 1.12rem;
}

.commerce-glance-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.commerce-glance-rail button,
.commerce-glance-rail a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: 104px;
  align-content: end;
  gap: 2px;
  padding: 10px;
  color: #fffdf8;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  background: #071014;
  box-shadow: 0 14px 34px rgba(26, 26, 26, 0.1);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.siren-domain-page .commerce-glance-rail button,
.siren-domain-page .commerce-glance-rail a {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.commerce-glance-rail button::before,
.commerce-glance-rail a::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.04), rgba(7, 16, 20, 0.78)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.28), transparent 58%);
}

.commerce-glance-rail img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 260ms ease;
}

.siren-domain-page .commerce-glance-rail img {
  filter: brightness(0.82) saturate(0.92);
}

.angel-domain-page .commerce-glance-rail img {
  filter: brightness(0.96) saturate(0.92);
}

.commerce-glance-rail button:hover img,
.commerce-glance-rail button:focus-visible img,
.commerce-glance-rail a:hover img,
.commerce-glance-rail a:focus-visible img {
  transform: scale(1.045);
}

.commerce-glance-rail span {
  color: var(--champagne);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-glance-rail strong {
  max-width: 11ch;
  color: #fffdf8;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 0.96;
}

.commerce-product-trust-grid.commerce-visual-fact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.1);
}

.siren-domain-page .commerce-product-trust-grid.commerce-visual-fact-grid {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(247, 244, 239, 0.12);
}

.commerce-product-card:not(.is-initiation) .commerce-product-trust-grid.commerce-visual-fact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commerce-product-trust-grid.commerce-visual-fact-grid article {
  min-height: 74px;
  padding: 12px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.74);
}

.siren-domain-page .commerce-product-trust-grid.commerce-visual-fact-grid article {
  background: rgba(255, 253, 248, 0.055);
}

.commerce-product-trust-grid.commerce-visual-fact-grid strong {
  font-size: clamp(1.04rem, 1.6vw, 1.34rem);
}

.commerce-fit-panel {
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.62);
}

.siren-domain-page .commerce-fit-panel {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.05);
}

.commerce-fit-panel summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  cursor: pointer;
  list-style: none;
}

.commerce-fit-panel summary::-webkit-details-marker {
  display: none;
}

.commerce-fit-panel summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
  justify-self: end;
}

.commerce-fit-panel[open] summary::after {
  content: "-";
}

.commerce-fit-panel summary .commerce-icon {
  width: 16px;
  height: 16px;
  color: var(--terracotta);
}

.siren-domain-page .commerce-fit-panel summary .commerce-icon {
  color: rgba(247, 244, 239, 0.74);
}

.commerce-fit-panel summary span,
.commerce-fit-panel summary strong {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.commerce-fit-panel summary strong {
  color: var(--smoke);
}

.siren-domain-page .commerce-fit-panel summary strong {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-fit-support-gauge {
  display: none;
}

.commerce-fit-panel-body {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}

.commerce-fit-panel-body p,
.commerce-product-trust-grid p {
  color: var(--smoke);
  font-size: 0.82rem;
  line-height: 1.65;
}

.siren-domain-page .commerce-fit-panel-body p,
.siren-domain-page .commerce-product-trust-grid p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-fit-panel-body a {
  color: inherit;
  font-weight: 600;
}

.commerce-fit-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commerce-fit-spec-grid div {
  min-height: 78px;
  padding: 13px;
}

.commerce-fit-spec-grid dd {
  font-size: 1.05rem;
}

.commerce-measurement-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--smoke);
  font-size: 0.78rem;
  line-height: 1.55;
}

.siren-domain-page .commerce-measurement-table {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-measurement-table caption {
  margin-bottom: 8px;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.commerce-measurement-table th,
.commerce-measurement-table td {
  padding: 9px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  text-align: left;
  vertical-align: top;
}

.siren-domain-page .commerce-measurement-table th,
.siren-domain-page .commerce-measurement-table td {
  border-color: rgba(247, 244, 239, 0.14);
}

.commerce-measurement-table th {
  width: 36%;
  color: var(--ink);
  font-weight: 600;
}

.siren-domain-page .commerce-measurement-table th {
  color: var(--paper);
}

.commerce-purchase-row {
  display: grid;
  gap: 12px;
  align-items: end;
}

[data-add-to-cart].is-added-to-cart {
  border-color: rgba(190, 156, 90, 0.6);
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 50%, rgba(190, 156, 90, 0.24), transparent 54%),
    rgba(255, 253, 248, 0.96);
  box-shadow:
    0 0 0 1px rgba(190, 156, 90, 0.18),
    0 14px 34px rgba(82, 66, 42, 0.18);
  animation: commerce-add-button-confirm 720ms ease both;
}

.siren-domain-page [data-add-to-cart].is-added-to-cart {
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 192, 142, 0.28), transparent 58%),
    rgba(247, 244, 239, 0.14);
  box-shadow:
    0 0 0 1px rgba(214, 192, 142, 0.26),
    0 18px 38px rgba(0, 0, 0, 0.22);
}

[data-add-to-cart].is-added-to-cart .commerce-icon {
  animation: commerce-add-icon-check 520ms ease both;
}

@keyframes commerce-add-button-confirm {
  0%,
  100% {
    transform: translateY(0);
  }

  34% {
    transform: translateY(-1px);
  }
}

@keyframes commerce-add-icon-check {
  0% {
    opacity: 0;
    transform: scale(0.72) rotate(-8deg);
  }

  58% {
    opacity: 1;
    transform: scale(1.12) rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.commerce-fit-path {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(84px, 108px) minmax(0, 1fr);
  gap: 10px;
  overflow: hidden;
  min-height: 118px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(216, 226, 223, 0.28)),
    rgba(255, 253, 248, 0.72);
}

.commerce-fit-path::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 253, 248, 0.72) 50%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(26, 26, 26, 0.035) 0 1px, transparent 1px 18px);
  opacity: 0.34;
  transform: translateX(-28%);
  transition: transform 520ms ease, opacity 320ms ease;
}

.commerce-product-card:hover .commerce-fit-path::before,
.commerce-product-card:focus-within .commerce-fit-path::before {
  opacity: 0.5;
  transform: translateX(18%);
}

.siren-domain-page .commerce-fit-path {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.06)),
    rgba(255, 253, 248, 0.035);
}

.siren-domain-page .commerce-fit-path::before {
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(214, 192, 142, 0.28) 50%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(247, 244, 239, 0.07) 0 1px, transparent 1px 18px);
}

.commerce-fit-path figure {
  position: relative;
  overflow: hidden;
  min-height: 102px;
  margin: 0;
  border-radius: 6px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-fit-path figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(7, 16, 20, 0.78));
}

.commerce-fit-path img {
  width: 100%;
  height: 100%;
  min-height: 102px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.commerce-product-card:hover .commerce-fit-path img,
.commerce-product-card:focus-within .commerce-fit-path img {
  transform: scale(1.035);
}

.commerce-fit-path figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 8px 8px;
  display: grid;
  gap: 2px;
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.commerce-fit-path figcaption span,
.commerce-fit-path-copy > span,
.commerce-fit-path-steps em {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.commerce-fit-path figcaption strong {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 0.95;
}

.commerce-fit-path-copy {
  display: grid;
  min-width: 0;
  gap: 9px;
  align-content: center;
}

.commerce-fit-path-copy > span {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  line-height: 1.1;
  color: var(--teal);
}

.siren-domain-page .commerce-fit-path-copy > span {
  color: var(--champagne);
}

.commerce-fit-path-copy > span .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-fit-path-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.28;
}

.siren-domain-page .commerce-fit-path-copy p {
  color: rgba(247, 244, 239, 0.82);
}

.commerce-fit-path-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.commerce-fit-path-steps span {
  display: grid;
  min-width: 0;
  min-height: 58px;
  gap: 4px;
  align-content: center;
  justify-items: start;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 8px;
  padding: 7px 6px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.68);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.siren-domain-page .commerce-fit-path-steps span {
  border-color: rgba(247, 244, 239, 0.14);
  color: var(--paper);
  background: rgba(7, 16, 20, 0.28);
}

.commerce-fit-path-steps span[data-ready="true"] {
  border-color: rgba(163, 134, 67, 0.54);
  background: rgba(200, 169, 102, 0.18);
  transform: translateY(-1px);
}

.siren-domain-page .commerce-fit-path-steps span[data-ready="true"] {
  border-color: rgba(214, 192, 142, 0.48);
  background: rgba(214, 192, 142, 0.14);
}

.commerce-fit-path-steps .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.siren-domain-page .commerce-fit-path-steps .commerce-icon {
  color: var(--champagne);
}

.commerce-fit-path-steps em {
  color: var(--smoke);
  font-style: normal;
}

.siren-domain-page .commerce-fit-path-steps em {
  color: rgba(247, 244, 239, 0.6);
}

.commerce-fit-path-steps strong {
  min-width: 0;
  max-width: 100%;
  font-size: 0.68rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.commerce-selected-look {
  contain: layout paint;
  display: grid;
  grid-template-columns: minmax(58px, 74px) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  align-self: stretch;
  overflow: hidden;
  max-width: 100%;
  min-height: 88px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.72);
}

.commerce-selected-look[data-ready="false"] {
  display: none;
}

.commerce-shop-page .commerce-product-card .commerce-selected-look {
  display: none;
}

.siren-domain-page .commerce-selected-look {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.055)),
    rgba(255, 253, 248, 0.035);
}

.commerce-selected-look[data-ready="true"] {
  border-color: rgba(163, 134, 67, 0.36);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 102, 0.12);
}

.commerce-selected-look img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-selected-look div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.commerce-selected-look-copy {
  min-width: 0;
}

.commerce-selected-look .commerce-selected-look-tokens {
  display: none;
}

.commerce-selected-look-token {
  min-width: 0;
  font-style: normal;
}

.commerce-selected-look-token b,
.commerce-selected-look-token var {
  display: block;
  min-width: 0;
  font-style: normal;
}

.commerce-selected-look span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-selected-look span {
  color: var(--champagne);
}

.commerce-selected-look .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-selected-look strong {
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
}

.siren-domain-page .commerce-selected-look strong {
  color: var(--paper);
}

.commerce-selected-look small {
  min-width: 0;
  overflow: hidden;
  color: var(--smoke);
  font-size: 0.72rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.siren-domain-page .commerce-selected-look small {
  color: rgba(247, 244, 239, 0.66);
}

.commerce-selected-look em {
  display: inline-grid;
  min-width: 52px;
  min-height: 36px;
  place-items: center;
  padding: 0 9px;
  color: var(--ink);
  border-radius: 999px;
  background: rgba(200, 169, 102, 0.2);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.commerce-selected-look.is-access-preview {
  min-height: 52px;
}

.commerce-selected-look.is-access-preview em {
  min-width: 58px;
}

.siren-domain-page .commerce-selected-look em {
  color: #071014;
  background: rgba(214, 192, 142, 0.84);
}

.commerce-pdp-quick-buy-card .commerce-selected-look {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 9px;
  min-height: 56px;
  padding: 6px 8px 6px 6px;
  border-radius: 999px;
}

.commerce-pdp-quick-buy-card .commerce-selected-look img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.commerce-pdp-quick-buy-card .commerce-selected-look span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-pdp-quick-buy-card .commerce-selected-look div {
  gap: 2px;
}

.commerce-pdp-quick-buy-card .commerce-selected-look strong {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.commerce-pdp-quick-buy-card .commerce-selected-look small {
  font-size: 0.66rem;
  line-height: 1.15;
}

.commerce-pdp-quick-buy-card .commerce-selected-look em {
  min-width: 44px;
  min-height: 28px;
  padding-inline: 8px;
  font-size: 0.58rem;
}

.commerce-size-map {
  display: grid;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(216, 226, 223, 0.3)),
    rgba(255, 253, 248, 0.64);
}

.siren-domain-page .commerce-size-map {
  border-color: rgba(247, 244, 239, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.06)),
    rgba(255, 253, 248, 0.035);
}

.commerce-size-map > span,
.commerce-size-map-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-size-map > span,
.siren-domain-page .commerce-size-map-row > span {
  color: var(--champagne);
}

.commerce-size-map > span .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-size-map-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.commerce-size-map-row > div {
  display: flex;
  min-width: 0;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 1px;
  scroll-snap-type: x proximity;
}

.commerce-size-map-row button {
  display: grid;
  min-width: 54px;
  min-height: 42px;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(26, 26, 26, 0.13);
  border-radius: 8px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.74);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.siren-domain-page .commerce-size-map-row button {
  border-color: rgba(247, 244, 239, 0.15);
  color: var(--paper);
  background: rgba(7, 16, 20, 0.34);
}

.commerce-size-map-row button strong {
  font-size: 0.82rem;
  line-height: 1;
}

.commerce-size-map-row button small {
  color: var(--smoke);
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.siren-domain-page .commerce-size-map-row button small {
  color: rgba(247, 244, 239, 0.58);
}

.commerce-size-map-row button:hover:not(:disabled),
.commerce-size-map-row button:focus-visible:not(:disabled),
.commerce-size-map-row button[aria-pressed="true"] {
  border-color: rgba(163, 134, 67, 0.72);
  background: rgba(200, 169, 102, 0.18);
  transform: translateY(-1px);
}

.siren-domain-page .commerce-size-map-row button:hover:not(:disabled),
.siren-domain-page .commerce-size-map-row button:focus-visible:not(:disabled),
.siren-domain-page .commerce-size-map-row button[aria-pressed="true"] {
  border-color: rgba(214, 192, 142, 0.44);
  background: rgba(214, 192, 142, 0.15);
}

.commerce-size-map-row button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.commerce-size-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-fit-confidence-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  min-width: 0;
}

.commerce-fit-confidence-chip {
  appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  grid-template-areas:
    "icon copy"
    "meter meter";
  gap: 4px 6px;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  overflow: hidden;
  padding: 6px 8px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.72),
    0 8px 20px rgba(26, 26, 26, 0.06);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.commerce-fit-confidence-chip::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 169, 102, 0.16), transparent 46%),
    linear-gradient(120deg, transparent 0%, rgba(255, 253, 248, 0.36) 48%, transparent 58%);
  opacity: 0.48;
}

.siren-domain-page .commerce-fit-confidence-chip {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(247, 244, 239, 0.1), rgba(214, 192, 142, 0.1)),
    rgba(7, 16, 20, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(247, 244, 239, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.2);
}

.commerce-fit-confidence-chip:hover,
.commerce-fit-confidence-chip:focus-visible {
  border-color: rgba(200, 169, 102, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.8),
    0 12px 28px rgba(163, 134, 67, 0.14);
  transform: translateY(-1px);
}

.siren-domain-page .commerce-fit-confidence-chip:hover,
.siren-domain-page .commerce-fit-confidence-chip:focus-visible {
  border-color: rgba(214, 192, 142, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(247, 244, 239, 0.14),
    0 14px 32px rgba(0, 0, 0, 0.28);
}

.commerce-fit-confidence-chip:focus-visible {
  outline: 2px solid rgba(200, 169, 102, 0.46);
  outline-offset: 2px;
}

.commerce-fit-confidence-icon {
  position: relative;
  z-index: 1;
  grid-area: icon;
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--gold);
}

.siren-domain-page .commerce-fit-confidence-icon {
  color: var(--champagne);
}

.commerce-fit-confidence-icon .commerce-icon {
  width: 15px;
  height: 15px;
}

.commerce-fit-confidence-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-area: copy;
  min-width: 0;
  gap: 2px;
}

.commerce-fit-confidence-copy span {
  overflow: hidden;
  color: var(--smoke);
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.siren-domain-page .commerce-fit-confidence-copy span {
  color: rgba(247, 244, 239, 0.58);
}

.commerce-fit-confidence-copy strong {
  overflow: hidden;
  color: currentColor;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.commerce-fit-confidence-chip .commerce-fit-meter-track {
  position: relative;
  z-index: 1;
  grid-area: meter;
  gap: 3px;
}

.commerce-fit-confidence-chip .commerce-fit-meter-track b {
  height: 3px;
  background: rgba(26, 26, 26, 0.16);
  opacity: 0.38;
}

.siren-domain-page .commerce-fit-confidence-chip .commerce-fit-meter-track b {
  background: rgba(247, 244, 239, 0.18);
}

.commerce-fit-confidence-chip[data-meter-level="1"] .commerce-fit-meter-track b:first-child,
.commerce-fit-confidence-chip[data-meter-level="2"] .commerce-fit-meter-track b:first-child,
.commerce-fit-confidence-chip[data-meter-level="2"] .commerce-fit-meter-track b:nth-child(2),
.commerce-fit-confidence-chip[data-meter-level="3"] .commerce-fit-meter-track b {
  background: linear-gradient(90deg, var(--gold), var(--champagne));
  box-shadow: 0 0 12px rgba(200, 169, 102, 0.28);
  opacity: 1;
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-confidence-copy span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-fit-confidence-copy strong {
  font-size: 0.62rem;
}

.commerce-size-control {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.commerce-size-control legend,
.commerce-quantity-label,
.commerce-inventory-note {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.commerce-size-label-icon,
.commerce-quantity-label-icon {
  display: none;
}

.commerce-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.commerce-size-option {
  --commerce-selected: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 3px;
  min-width: 64px;
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  color: inherit;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.commerce-size-option::before {
  position: absolute;
  inset: auto 9px 7px;
  height: 2px;
  pointer-events: none;
  content: "";
  background: currentColor;
  opacity: 0.54;
  transform: scaleX(var(--commerce-selected));
  transform-origin: left center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.commerce-size-option input {
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.commerce-size-option span {
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
}

.commerce-size-option small {
  position: relative;
  z-index: 1;
  color: var(--smoke);
  font-size: 0.66rem;
  line-height: 1;
}

.commerce-size-option:has(input:checked) {
  --commerce-selected: 1;
  border-color: rgba(163, 134, 67, 0.92);
  background: rgba(200, 169, 102, 0.23);
  box-shadow: 0 8px 18px rgba(163, 134, 67, 0.14), inset 0 0 0 1px rgba(255, 253, 248, 0.72);
  color: var(--ink);
  transform: translateY(-1px);
}

.commerce-size-option:has(input:focus-visible) {
  outline: 3px solid rgba(200, 169, 102, 0.24);
  outline-offset: 2px;
}

.commerce-size-option:has(input:disabled) {
  opacity: 0.44;
  cursor: not-allowed;
}

.commerce-quantity-control {
  display: grid;
  gap: 8px;
  justify-self: start;
}

.commerce-quantity-stepper {
  display: inline-grid;
  grid-template-columns: 42px 58px 42px;
  overflow: hidden;
  min-height: 48px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
}

.commerce-quantity-stepper button,
.commerce-quantity-stepper input {
  min-height: 48px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.commerce-quantity-stepper button {
  display: inline-grid;
  place-items: center;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.commerce-quantity-stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.commerce-quantity-stepper input {
  width: 58px;
  border-inline: 1px solid rgba(26, 26, 26, 0.12);
  font-weight: 700;
  text-align: center;
  appearance: textfield;
}

.commerce-quantity-stepper input::-webkit-outer-spin-button,
.commerce-quantity-stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.siren-domain-page .commerce-size-option,
.siren-domain-page .commerce-quantity-stepper {
  border-color: rgba(247, 244, 239, 0.2);
  background: rgba(255, 253, 248, 0.06);
}

.siren-domain-page .commerce-size-option:has(input:checked) {
  border-color: rgba(220, 189, 122, 0.92);
  background: rgba(220, 189, 122, 0.26);
  box-shadow: 0 8px 18px rgba(220, 189, 122, 0.16), inset 0 0 0 1px rgba(247, 244, 239, 0.1);
  color: var(--paper);
}

.siren-domain-page .commerce-size-option small,
.siren-domain-page .commerce-size-control legend,
.siren-domain-page .commerce-quantity-label,
.siren-domain-page .commerce-inventory-note {
  color: rgba(247, 244, 239, 0.68);
}

.siren-domain-page .commerce-quantity-stepper input {
  border-color: rgba(247, 244, 239, 0.18);
}

.commerce-size-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--smoke);
  font-size: 0.78rem;
}

.commerce-sold-out-size-panel {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(216, 226, 223, 0.32)),
    rgba(255, 253, 248, 0.62);
}

.siren-domain-page .commerce-sold-out-size-panel {
  border-color: rgba(247, 244, 239, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.07)),
    rgba(255, 253, 248, 0.035);
}

.commerce-sold-out-size-panel figure {
  position: relative;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  min-height: 142px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-sold-out-size-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.commerce-sold-out-size-panel figcaption {
  position: absolute;
  inset: auto 8px 8px;
  display: grid;
  gap: 2px;
  color: var(--paper);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.44);
}

.commerce-sold-out-size-panel figcaption span,
.commerce-sold-out-size-panel > div > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-sold-out-size-panel figcaption span {
  color: rgba(255, 253, 248, 0.78);
}

.commerce-sold-out-size-panel figcaption strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.commerce-sold-out-size-panel > div {
  display: grid;
  min-width: 0;
  gap: 8px;
  align-content: center;
}

.commerce-sold-out-size-panel > div > span {
  color: var(--teal);
}

.siren-domain-page .commerce-sold-out-size-panel > div > span {
  color: var(--champagne);
}

.commerce-sold-out-size-panel > div > span .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-sold-out-size-panel > div > strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.05;
}

.siren-domain-page .commerce-sold-out-size-panel > div > strong {
  color: var(--paper);
}

.commerce-sold-out-size-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  min-width: 0;
}

.commerce-sold-out-size-status em {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 8px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.62);
  font-style: normal;
}

.siren-domain-page .commerce-sold-out-size-status em {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.13);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-sold-out-size-status .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.siren-domain-page .commerce-sold-out-size-status .commerce-icon {
  color: var(--champagne);
}

.commerce-sold-out-size-status small {
  color: var(--smoke);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.siren-domain-page .commerce-sold-out-size-status small {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-sold-out-size-status b {
  min-width: 0;
  font-size: 0.72rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.commerce-sold-out-size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.commerce-sold-out-size-chips em {
  display: grid;
  min-width: 0;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  font-style: normal;
}

.siren-domain-page .commerce-sold-out-size-chips em {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(7, 16, 20, 0.34);
}

.commerce-sold-out-size-chips small {
  color: var(--smoke);
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.siren-domain-page .commerce-sold-out-size-chips small {
  color: rgba(247, 244, 239, 0.58);
}

.commerce-sold-out-size-chips b {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.siren-domain-page .commerce-sold-out-size-chips b {
  color: var(--paper);
}

.commerce-sold-out-size-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  justify-self: start;
  min-height: 34px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-sold-out-size-panel button {
  border-color: rgba(247, 244, 239, 0.2);
  color: var(--paper);
}

@media (max-width: 420px) {
  .commerce-sold-out-size-panel {
    grid-template-columns: 1fr;
  }

  .commerce-sold-out-size-panel figure {
    min-height: 118px;
  }

  .commerce-sold-out-size-panel > div > strong {
    font-size: 1.02rem;
  }

  .commerce-sold-out-size-chips em {
    padding-inline: 8px;
  }
}

.commerce-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  margin-top: 6px;
}

.commerce-restock-panel,
.commerce-preview-access-panel {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(216, 226, 223, 0.32)),
    rgba(255, 253, 248, 0.54);
}

.siren-domain-page .commerce-restock-panel,
.siren-domain-page .commerce-preview-access-panel {
  border-color: rgba(247, 244, 239, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(200, 169, 102, 0.08)),
    rgba(255, 253, 248, 0.04);
}

.commerce-restock-panel img,
.commerce-preview-access-panel img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  border-radius: 6px;
  object-fit: cover;
}

.commerce-restock-panel > div,
.commerce-preview-access-panel > div {
  display: grid;
  min-width: 0;
  gap: 7px;
  align-content: center;
}

.commerce-restock-panel span,
.commerce-preview-access-panel span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.siren-domain-page .commerce-restock-panel span,
.siren-domain-page .commerce-preview-access-panel span {
  color: var(--champagne);
}

.commerce-restock-panel .commerce-icon,
.commerce-preview-access-panel .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-restock-panel strong,
.commerce-preview-access-panel strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.05;
}

.siren-domain-page .commerce-restock-panel strong,
.siren-domain-page .commerce-preview-access-panel strong {
  color: var(--paper);
}

.commerce-restock-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.commerce-restock-cues em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  padding: 6px 8px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  font-style: normal;
}

.siren-domain-page .commerce-restock-cues em {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-restock-cues .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-restock-cues small {
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.commerce-restock-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  justify-self: start;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.siren-domain-page .commerce-restock-panel a {
  border-color: rgba(247, 244, 239, 0.2);
  color: var(--paper);
}

.commerce-product-alert-panel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(216, 226, 223, 0.3)),
    rgba(255, 253, 248, 0.58);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-alert-panel {
  border-radius: 14px;
  box-shadow:
    0 18px 46px rgba(26, 26, 26, 0.08),
    inset 0 1px 0 rgba(255, 253, 248, 0.52);
}

.siren-domain-page .commerce-product-alert-panel {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.09), rgba(200, 169, 102, 0.1)),
    rgba(255, 253, 248, 0.05);
}

.commerce-product-alert-panel[data-product-alerted="true"] {
  border-color: rgba(122, 144, 136, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(122, 144, 136, 0.2)),
    rgba(255, 253, 248, 0.7);
}

.siren-domain-page .commerce-product-alert-panel[data-product-alerted="true"] {
  border-color: rgba(200, 169, 102, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(200, 169, 102, 0.18)),
    rgba(255, 253, 248, 0.06);
}

.commerce-product-alert-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255, 253, 248, 0.72);
}

.siren-domain-page .commerce-product-alert-orb {
  color: var(--champagne);
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.07);
}

.commerce-product-alert-orb .commerce-icon,
.commerce-product-alert-panel button .commerce-icon {
  width: 16px;
  height: 16px;
}

.commerce-product-alert-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.commerce-product-alert-copy strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.05;
}

.siren-domain-page .commerce-product-alert-copy strong {
  color: var(--paper);
}

.commerce-product-alert-copy p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  margin: 0;
}

.commerce-product-alert-copy em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  padding: 5px 7px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.09);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  font-style: normal;
}

.siren-domain-page .commerce-product-alert-copy em {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-product-alert-copy em .commerce-icon {
  width: 12px;
  height: 12px;
}

.commerce-product-alert-copy small {
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.commerce-product-alert-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.commerce-product-alert-panel button[aria-pressed="true"] {
  color: var(--paper);
  border-color: var(--teal);
  background: var(--teal);
}

.siren-domain-page .commerce-product-alert-panel button {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.2);
  background: rgba(255, 253, 248, 0.08);
}

.siren-domain-page .commerce-product-alert-panel button[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--champagne);
  background: var(--champagne);
}

@media (prefers-reduced-motion: no-preference) {
  .commerce-product-alert-panel {
    transition:
      border-color 260ms ease,
      box-shadow 320ms ease,
      transform 320ms ease;
  }

  .commerce-product-alert-panel:hover,
  .commerce-product-alert-panel:focus-within {
    border-color: rgba(122, 144, 136, 0.34);
    box-shadow:
      0 24px 58px rgba(26, 26, 26, 0.12),
      inset 0 1px 0 rgba(255, 253, 248, 0.62);
    transform: translateY(-1px);
  }
}

.commerce-product-meta button,
.commerce-product-action,
.commerce-checkout-form button[type="submit"],
.commerce-cart-open-button,
.commerce-auth-actions button,
.commerce-provider-actions button,
.commerce-account-card > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.commerce-checkout-form button[type="submit"] {
  position: relative;
  z-index: 1;
}

.commerce-product-meta button:hover:not(:disabled),
.commerce-product-meta button:focus-visible:not(:disabled),
.commerce-product-action:hover,
.commerce-product-action:focus-visible,
.commerce-checkout-form button[type="submit"]:hover:not(:disabled),
.commerce-checkout-form button[type="submit"]:focus-visible:not(:disabled),
.commerce-cart-open-button:hover,
.commerce-cart-open-button:focus-visible,
.commerce-auth-actions button:hover:not(:disabled),
.commerce-auth-actions button:focus-visible:not(:disabled),
.commerce-provider-actions button:hover:not(:disabled),
.commerce-provider-actions button:focus-visible:not(:disabled),
.commerce-account-card > button:hover,
.commerce-account-card > button:focus-visible {
  transform: translateY(-1px);
}

.siren-domain-page .commerce-product-meta button,
.siren-domain-page .commerce-product-action,
.siren-domain-page .commerce-checkout-form button[type="submit"],
.siren-domain-page .commerce-cart-open-button,
.siren-domain-page .commerce-auth-actions button,
.siren-domain-page .commerce-provider-actions button,
.siren-domain-page .commerce-account-card > button {
  border-color: var(--paper);
  background: var(--paper);
  color: #071014;
}

.commerce-product-action.is-restock {
  border-color: rgba(26, 26, 26, 0.16);
  background: transparent;
  color: var(--ink);
}

.siren-domain-page .commerce-product-action.is-restock {
  border-color: rgba(247, 244, 239, 0.24);
  background: transparent;
  color: var(--paper);
}

.commerce-product-meta button:disabled,
.commerce-checkout-form button[type="submit"]:disabled,
.commerce-auth-actions button:disabled,
.commerce-provider-actions button:disabled {
  border-color: rgba(26, 26, 26, 0.18);
  background: transparent;
  color: var(--smoke);
  cursor: not-allowed;
}

.siren-domain-page .commerce-product-meta button:disabled {
  border-color: rgba(247, 244, 239, 0.22);
  color: rgba(247, 244, 239, 0.62);
}

.commerce-checkout-trust-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commerce-checkout-trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 34px;
  gap: 6px;
  padding: 0 9px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.76), rgba(216, 226, 223, 0.28));
  color: var(--smoke);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.commerce-checkout-trust-item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.commerce-checkout-trust-item .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.siren-domain-page .commerce-checkout-trust-item {
  border-color: rgba(247, 244, 239, 0.16);
  background: linear-gradient(135deg, rgba(247, 244, 239, 0.08), rgba(200, 169, 102, 0.08));
  color: rgba(247, 244, 239, 0.76);
}

.siren-domain-page .commerce-checkout-trust-item .commerce-icon {
  color: var(--champagne);
}

@keyframes commerce-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes commerce-view-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes commerce-material-sweep {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-14deg);
  }

  28% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(130%) skewX(-14deg);
  }
}

@keyframes commerce-dock-sheen {
  0% {
    opacity: 0;
    transform: translateX(-48%) skewX(-12deg);
  }

  38% {
    opacity: 0.48;
  }

  100% {
    opacity: 0;
    transform: translateX(48%) skewX(-12deg);
  }
}

@keyframes commerce-private-scan {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(-128%) skewX(-18deg);
  }

  84% {
    opacity: 0.32;
  }
}

@supports (animation-timeline: view()) {
  .commerce-featured-media,
  .commerce-product-depth-grid .commerce-visual-story-card,
  .commerce-product-card,
  .commerce-gateway-card,
  .commerce-pdp-proof-band figure,
  .commerce-release-card,
  .commerce-set-builder {
    animation: commerce-view-rise both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

.commerce-shop-tools,
.commerce-tide-card,
.commerce-product-card,
.commerce-cart-card,
.commerce-account > * {
  animation: commerce-reveal 620ms ease both;
}

.commerce-hero-buy-media,
.commerce-featured-media,
.commerce-gateway-visual {
  isolation: isolate;
}

.commerce-hero-buy-media img,
.commerce-featured-media img,
.commerce-gateway-visual img {
  position: relative;
  z-index: 0;
}

.commerce-hero-buy-media::before,
.commerce-featured-media::before,
.commerce-gateway-visual::before {
  position: absolute;
  z-index: 1;
  inset: -24% auto -24% -42%;
  width: 38%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.42), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-130%) skewX(-14deg);
}

.siren-domain-page .commerce-hero-buy-media::before,
.siren-domain-page .commerce-featured-media::before,
.commerce-gateway-card-siren .commerce-gateway-visual::before {
  background: linear-gradient(90deg, transparent, rgba(200, 169, 102, 0.4), transparent);
}

.angel-domain-page .commerce-hero-buy-media::before,
.angel-domain-page .commerce-featured-media::before,
.commerce-gateway-card-angel .commerce-gateway-visual::before {
  background: linear-gradient(90deg, transparent, rgba(216, 226, 223, 0.72), transparent);
}

.commerce-hero-buy-card:hover .commerce-hero-buy-media::before,
.commerce-hero-buy-card:focus-within .commerce-hero-buy-media::before,
.commerce-featured-media:hover::before,
.commerce-featured-media:focus-within::before,
.commerce-gateway-card:hover .commerce-gateway-visual::before,
.commerce-gateway-card:focus-within .commerce-gateway-visual::before {
  animation: commerce-material-sweep 1100ms ease both;
}

.commerce-hero-buy-media::after,
.commerce-featured-media::after,
.commerce-gateway-visual::after {
  z-index: 1;
}

.commerce-hero-brand-card {
  transition: transform 520ms ease, opacity 320ms ease, box-shadow 520ms ease, border-color 320ms ease;
}

.commerce-hero-brand-card:hover,
.commerce-hero-brand-card:focus-visible {
  border-color: rgba(255, 253, 248, 0.48);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px);
}

body:not(.brand-domain-page) .commerce-hero-brand-stage:has(.commerce-hero-brand-card:hover) .commerce-hero-brand-card:not(:hover),
body:not(.brand-domain-page) .commerce-hero-brand-stage:has(.commerce-hero-brand-card:focus-visible) .commerce-hero-brand-card:not(:focus-visible) {
  opacity: 0.86;
  transform: translateY(8px) scale(0.985);
}

.commerce-product-card.is-locked::after,
.commerce-product-card.is-mystery::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 30%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.18), transparent);
  mix-blend-mode: screen;
  animation: commerce-private-scan 5.6s ease infinite;
}

.commerce-product-grid .commerce-product-card:nth-child(2) {
  animation-delay: 80ms;
}

.commerce-product-grid .commerce-product-card:nth-child(3) {
  animation-delay: 140ms;
}

.commerce-auth-form,
.commerce-account-card,
.commerce-cart-card,
.commerce-gateway-card {
  padding: 26px;
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.07);
}

.commerce-cart-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.36)),
    rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(16px);
}

.siren-domain-page .commerce-cart-card {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.12), rgba(200, 169, 102, 0.08)),
    rgba(255, 253, 248, 0.055);
}

.commerce-cart-card.is-empty {
  min-height: 228px;
}

.commerce-empty-bag-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.commerce-empty-bag-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 210px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 13px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.2);
  text-decoration: none;
}

.commerce-empty-bag-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 36%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.24), transparent 64%);
}

.commerce-empty-bag-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 320ms ease;
}

.commerce-empty-bag-card:hover img,
.commerce-empty-bag-card:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.commerce-empty-bag-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 7px;
  padding: 7px 9px;
  color: rgba(247, 244, 239, 0.84);
  border: 1px solid rgba(247, 244, 239, 0.28);
  border-radius: 999px;
  background: rgba(7, 16, 20, 0.48);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.commerce-empty-bag-card .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-empty-bag-card strong {
  max-width: 11ch;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 3vw, 1.72rem);
  font-weight: 500;
  line-height: 0.96;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.commerce-empty-bag-readiness {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.commerce-empty-bag-readiness span {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
}

.siren-domain-page .commerce-empty-bag-readiness span {
  color: var(--paper);
  background: rgba(255, 253, 248, 0.06);
  border-color: rgba(247, 244, 239, 0.14);
}

.commerce-empty-bag-readiness .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.siren-domain-page .commerce-empty-bag-readiness .commerce-icon {
  color: var(--champagne);
}

.commerce-empty-bag-readiness em {
  color: var(--smoke);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.siren-domain-page .commerce-empty-bag-readiness em {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-empty-bag-readiness strong {
  min-width: 0;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.commerce-cart-drawer-shell {
  position: fixed;
  z-index: 70;
  inset: 0;
  pointer-events: none;
}

.commerce-cart-drawer-shell.is-open {
  pointer-events: auto;
}

.commerce-cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 20, 0.48);
  opacity: 0;
  transition: opacity 220ms ease;
}

.commerce-cart-drawer-shell.is-open .commerce-cart-drawer-backdrop {
  opacity: 1;
}

.commerce-cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0;
  width: min(460px, 100%);
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.98), rgba(216, 226, 223, 0.5)),
    var(--paper);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.24);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.siren-domain-page .commerce-cart-drawer {
  color: var(--paper);
  background:
    linear-gradient(160deg, rgba(10, 22, 25, 0.98), rgba(7, 16, 20, 0.96)),
    #071014;
}

.commerce-cart-drawer-shell.is-open .commerce-cart-drawer {
  transform: translateX(0);
}

.commerce-cart-drawer-shell.is-cart-catching .commerce-cart-drawer {
  animation: commerce-cart-catch 720ms ease both;
}

.commerce-cart-drawer-shell.is-cart-catching .commerce-cart-item img {
  animation: commerce-cart-item-catch 760ms ease both;
}

.commerce-floating-cart-shell {
  position: fixed;
  z-index: 170;
  right: 22px;
  bottom: 22px;
  pointer-events: none;
}

.commerce-floating-cart-shell.is-visible {
  pointer-events: auto;
  animation: commerce-floating-cart-enter 240ms ease both;
}

.commerce-floating-cart-shell:not(.is-visible) {
  display: none;
}

.commerce-floating-cart-button {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(216, 226, 223, 0.5)),
    rgba(255, 253, 248, 0.92);
  color: var(--ink);
  box-shadow:
    0 22px 54px rgba(26, 26, 26, 0.24),
    0 0 0 1px rgba(255, 253, 248, 0.72),
    inset 0 1px 0 rgba(255, 253, 248, 0.78);
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.commerce-floating-cart-button::after {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 1px solid rgba(200, 169, 102, 0.28);
  border-radius: 999px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
  animation: commerce-floating-cart-beacon 2600ms ease infinite;
}

.siren-domain-page .commerce-floating-cart-button {
  border-color: rgba(247, 244, 239, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.14), rgba(200, 169, 102, 0.12)),
    rgba(7, 16, 20, 0.94);
  color: var(--paper);
  box-shadow:
    0 0 0 1px rgba(247, 244, 239, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.36);
}

.siren-domain-page .commerce-floating-cart-button::after {
  border-color: rgba(214, 192, 142, 0.34);
}

.commerce-floating-cart-button:hover,
.commerce-floating-cart-button:focus-visible {
  border-color: rgba(200, 169, 102, 0.58);
  box-shadow:
    0 22px 54px rgba(26, 26, 26, 0.24),
    0 0 0 4px rgba(200, 169, 102, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.78);
  transform: translateY(-2px);
}

.commerce-floating-cart-button .commerce-icon {
  width: 21px;
  height: 21px;
}

.commerce-floating-cart-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-floating-cart-button strong {
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  padding-inline: 6px;
  border: 1px solid rgba(255, 253, 248, 0.82);
  border-radius: 999px;
  background: var(--champagne);
  color: #071014;
  font: 900 0.68rem/1 var(--sans);
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.2);
}

@keyframes commerce-floating-cart-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.commerce-cart-flyout {
  position: fixed;
  z-index: 120;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 14px;
  box-shadow:
    0 22px 58px rgba(7, 16, 20, 0.34),
    0 0 0 8px rgba(255, 253, 248, 0.16);
  pointer-events: none;
  transform-origin: center;
  animation: commerce-cart-flyout 840ms cubic-bezier(0.18, 0.86, 0.22, 1) forwards;
  will-change: transform, opacity, filter;
}

@keyframes commerce-cart-flyout {
  0% {
    opacity: 0;
    filter: saturate(0.95) contrast(1);
    transform: translate3d(0, 0, 0) scale(0.86);
  }

  18% {
    opacity: 0.98;
    transform: translate3d(0, 0, 0) scale(1);
  }

  64% {
    opacity: 0.94;
    filter: saturate(1.05) contrast(1.04);
    transform:
      translate3d(
        calc(var(--cart-fly-x, 0px) * 0.72),
        calc((var(--cart-fly-y, 0px) * 0.72) - 18px),
        0
      )
      scale(calc((1 + var(--cart-fly-scale, 0.32)) / 2));
  }

  100% {
    opacity: 0;
    filter: saturate(1.08) contrast(1.04) blur(1px);
    transform:
      translate3d(var(--cart-fly-x, 0px), var(--cart-fly-y, 0px), 0)
      scale(var(--cart-fly-scale, 0.32));
  }
}

@keyframes commerce-cart-catch {
  0%,
  100% {
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.24);
  }

  38% {
    box-shadow:
      -28px 0 80px rgba(0, 0, 0, 0.24),
      0 0 0 1px rgba(190, 156, 90, 0.34),
      -18px 0 52px rgba(190, 156, 90, 0.18);
  }
}

@keyframes commerce-cart-item-catch {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }

  42% {
    transform: scale(1.045);
    filter: saturate(1.1) contrast(1.04);
  }
}

@keyframes commerce-floating-cart-beacon {
  0%,
  100% {
    opacity: 0.66;
    transform: scale(0.92);
  }

  54% {
    opacity: 0.08;
    transform: scale(1.16);
  }
}

.commerce-cart-drawer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: start;
  padding: 0 0 16px;
}

.commerce-cart-drawer-top span {
  grid-column: 1 / -1;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-cart-drawer-top h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.98;
}

.commerce-cart-drawer-top button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 253, 248, 0.74);
  color: var(--ink);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-cart-drawer-top button {
  border-color: rgba(247, 244, 239, 0.22);
  background: rgba(255, 253, 248, 0.08);
  color: var(--paper);
}

.commerce-cart-drawer .commerce-cart-card {
  align-content: start;
  box-shadow: none;
}

.commerce-cart-drawer .commerce-checkout-fields {
  grid-template-columns: minmax(0, 1fr);
}

.commerce-cart-drawer .commerce-checkout-fields label:nth-child(5),
.commerce-cart-drawer .commerce-checkout-fields label:nth-child(6) {
  grid-column: auto;
}

.commerce-fit-drawer-shell {
  position: fixed;
  z-index: 72;
  inset: 0;
  pointer-events: none;
}

.commerce-fit-drawer-shell.is-open {
  pointer-events: auto;
}

.commerce-fit-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 20, 0.46);
  opacity: 0;
  transition: opacity 220ms ease;
}

.commerce-fit-drawer-shell.is-open .commerce-fit-drawer-backdrop {
  opacity: 1;
}

.commerce-fit-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  width: min(560px, 100%);
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.98), rgba(216, 226, 223, 0.54)),
    var(--paper);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.24);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.siren-domain-page .commerce-fit-drawer {
  color: var(--paper);
  background:
    linear-gradient(160deg, rgba(10, 22, 25, 0.98), rgba(7, 16, 20, 0.96)),
    #071014;
}

.commerce-fit-drawer-shell.is-open .commerce-fit-drawer {
  transform: translateX(0);
}

.commerce-fit-drawer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: start;
  padding: 0 0 16px;
}

.commerce-fit-drawer-top span {
  grid-column: 1 / -1;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-fit-drawer-top h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.commerce-fit-drawer-top button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 253, 248, 0.74);
  color: var(--ink);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-fit-drawer-top button {
  border-color: rgba(247, 244, 239, 0.22);
  background: rgba(255, 253, 248, 0.08);
  color: var(--paper);
}

.commerce-fit-atlas {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  height: max-content;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.36)),
    rgba(255, 253, 248, 0.74);
}

.commerce-fit-atlas::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(255, 253, 248, 0.62) 50%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(26, 26, 26, 0.035) 0 1px, transparent 1px 20px);
  opacity: 0.36;
  transform: translateX(-24%);
  transition: transform 620ms ease, opacity 320ms ease;
}

.commerce-fit-atlas:hover::before,
.commerce-fit-atlas:focus-within::before {
  opacity: 0.52;
  transform: translateX(18%);
}

.siren-domain-page .commerce-fit-atlas {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.06)),
    rgba(255, 253, 248, 0.035);
}

.siren-domain-page .commerce-fit-atlas::before {
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(214, 192, 142, 0.26) 50%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(247, 244, 239, 0.07) 0 1px, transparent 1px 20px);
}

.commerce-fit-atlas-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 0.46fr);
  gap: 8px;
  min-width: 0;
}

.commerce-fit-atlas-primary,
.commerce-fit-atlas-secondary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  min-height: 256px;
  margin: 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(7, 16, 20, 0.2);
}

.siren-domain-page .commerce-fit-atlas-primary,
.siren-domain-page .commerce-fit-atlas-secondary {
  border-color: rgba(247, 244, 239, 0.18);
}

.commerce-fit-atlas-secondary {
  display: grid;
  align-content: end;
  padding: 10px;
  border-style: solid;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.commerce-fit-atlas-primary::after,
.commerce-fit-atlas-secondary::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.24), transparent 62%);
}

.commerce-fit-atlas-primary img,
.commerce-fit-atlas-secondary img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 620ms ease, filter 320ms ease;
}

.commerce-fit-atlas:hover img,
.commerce-fit-atlas:focus-within img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.045);
}

.commerce-fit-atlas-primary figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 13px 13px;
  display: grid;
  gap: 4px;
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.commerce-fit-atlas-primary figcaption span,
.commerce-fit-atlas-secondary span,
.commerce-fit-atlas-copy > span,
.commerce-fit-atlas-chips em {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.commerce-fit-atlas-primary figcaption strong {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.commerce-fit-atlas-secondary span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(247, 244, 239, 0.3);
  border-radius: 999px;
  padding: 7px 9px;
  color: rgba(247, 244, 239, 0.88);
  background: rgba(7, 16, 20, 0.48);
  backdrop-filter: blur(12px);
}

.commerce-fit-atlas-secondary .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-fit-atlas-copy {
  display: grid;
  min-width: 0;
  gap: 12px;
  align-content: center;
  margin-top: 12px;
  padding: 4px 2px;
}

.commerce-fit-atlas-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
}

.siren-domain-page .commerce-fit-atlas-copy > span {
  color: var(--champagne);
}

.commerce-fit-atlas-copy > span .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-fit-atlas-copy h3 {
  max-width: 22ch;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.58rem, 2.4vw, 2.08rem);
  font-weight: 500;
  line-height: 0.96;
}

.siren-domain-page .commerce-fit-atlas-copy h3 {
  color: var(--paper);
}

.commerce-fit-atlas-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.commerce-fit-atlas-chips span {
  display: grid;
  min-width: 0;
  gap: 5px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.68);
}

.siren-domain-page .commerce-fit-atlas-chips span {
  border-color: rgba(247, 244, 239, 0.14);
  color: var(--paper);
  background: rgba(7, 16, 20, 0.28);
}

.commerce-fit-atlas-chips .commerce-icon {
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.siren-domain-page .commerce-fit-atlas-chips .commerce-icon {
  color: var(--champagne);
}

.commerce-fit-atlas-chips em {
  color: var(--smoke);
  font-style: normal;
}

.siren-domain-page .commerce-fit-atlas-chips em {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-fit-atlas-chips strong {
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.commerce-fit-atlas-copy p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.84rem;
  line-height: 1.55;
}

.siren-domain-page .commerce-fit-atlas-copy p {
  color: rgba(247, 244, 239, 0.7);
}

.commerce-fit-drawer-body {
  display: grid;
  gap: 16px;
  align-content: start;
}

.commerce-fit-current {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.44);
}

.commerce-fit-current::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(108deg, transparent 0 36%, rgba(34, 94, 100, 0.11) 42%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(26, 26, 26, 0.035) 0 1px, transparent 1px 18px);
  opacity: 0.78;
}

.siren-domain-page .commerce-fit-current {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.075)),
    rgba(7, 16, 20, 0.3);
  box-shadow: inset 0 0 0 1px rgba(247, 244, 239, 0.05);
}

.siren-domain-page .commerce-fit-current::before {
  background:
    linear-gradient(108deg, transparent 0 36%, rgba(214, 192, 142, 0.2) 42%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(247, 244, 239, 0.06) 0 1px, transparent 1px 18px);
}

.commerce-fit-current-head {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.commerce-fit-current-head > span,
.commerce-fit-current-choice > span,
.commerce-fit-current-visual em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.siren-domain-page .commerce-fit-current-head > span,
.siren-domain-page .commerce-fit-current-choice > span,
.siren-domain-page .commerce-fit-current-visual em {
  color: var(--champagne);
}

.commerce-fit-current-head .commerce-icon,
.commerce-fit-current-choice > span .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-fit-current-head strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.08rem);
  font-weight: 500;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.siren-domain-page .commerce-fit-current-head strong {
  color: var(--paper);
}

.commerce-fit-current-head p {
  max-width: 54ch;
  margin: 0;
  color: var(--smoke);
  font-size: 0.82rem;
  line-height: 1.5;
}

.siren-domain-page .commerce-fit-current-head p {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-fit-current-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-fit-current-visual::before {
  position: absolute;
  top: 50%;
  left: 22%;
  width: 56%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(34, 94, 100, 0.36), transparent);
}

.siren-domain-page .commerce-fit-current-visual::before {
  background: linear-gradient(90deg, transparent, rgba(214, 192, 142, 0.42), transparent);
}

.commerce-fit-current-visual > span {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 116px;
  gap: 6px;
  align-content: center;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 94, 100, 0.14), transparent 32%),
    rgba(255, 253, 248, 0.72);
}

.siren-domain-page .commerce-fit-current-visual > span {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 192, 142, 0.22), transparent 32%),
    rgba(255, 253, 248, 0.045);
}

.commerce-fit-current-visual > span > .commerce-icon {
  width: 21px;
  height: 21px;
  color: var(--teal);
}

.siren-domain-page .commerce-fit-current-visual > span > .commerce-icon {
  color: var(--champagne);
}

.commerce-fit-current-visual strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.16rem;
  font-weight: 600;
  line-height: 0.9;
}

.siren-domain-page .commerce-fit-current-visual strong {
  color: var(--paper);
}

.commerce-fit-current-visual small {
  min-width: 0;
  color: var(--smoke);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.siren-domain-page .commerce-fit-current-visual small {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-fit-current-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-fit-current-choice {
  display: grid;
  min-width: 0;
  gap: 8px;
  border: 1px solid rgba(26, 26, 26, 0.09);
  border-radius: 8px;
  padding: 11px;
  background: rgba(255, 253, 248, 0.56);
}

.siren-domain-page .commerce-fit-current-choice {
  border-color: rgba(247, 244, 239, 0.12);
  background: rgba(255, 253, 248, 0.04);
}

.commerce-fit-current-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.commerce-fit-current-choice button {
  flex: 1 1 48px;
  min-width: 48px;
  min-height: 38px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.74);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.siren-domain-page .commerce-fit-current-choice button {
  border-color: rgba(247, 244, 239, 0.14);
  color: var(--paper);
  background: rgba(7, 16, 20, 0.34);
}

.commerce-fit-current-choice button:hover,
.commerce-fit-current-choice button:focus-visible {
  border-color: rgba(34, 94, 100, 0.34);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(26, 26, 26, 0.09);
}

.siren-domain-page .commerce-fit-current-choice button:hover,
.siren-domain-page .commerce-fit-current-choice button:focus-visible {
  border-color: rgba(214, 192, 142, 0.42);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.commerce-fit-current-choice button[data-selected="true"] {
  border-color: rgba(34, 94, 100, 0.5);
  background:
    linear-gradient(135deg, rgba(34, 94, 100, 0.17), rgba(255, 253, 248, 0.9)),
    rgba(255, 253, 248, 0.9);
}

.siren-domain-page .commerce-fit-current-choice button[data-selected="true"] {
  border-color: rgba(214, 192, 142, 0.62);
  background:
    linear-gradient(135deg, rgba(214, 192, 142, 0.24), rgba(255, 253, 248, 0.08)),
    rgba(7, 16, 20, 0.52);
}

.commerce-fit-current-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.commerce-fit-current-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.8);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-fit-current-actions button {
  border-color: rgba(247, 244, 239, 0.16);
  color: var(--paper);
  background: rgba(255, 253, 248, 0.07);
}

.commerce-fit-current-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.commerce-fit-current-actions .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-fit-selector {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.72);
}

.commerce-fit-selector::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 94, 100, 0.16), transparent 32%),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 253, 248, 0.64) 48%, transparent 54%);
  opacity: 0.58;
}

.siren-domain-page .commerce-fit-selector {
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.075), rgba(214, 192, 142, 0.075)),
    rgba(7, 16, 20, 0.28);
}

.siren-domain-page .commerce-fit-selector::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(214, 192, 142, 0.18), transparent 34%),
    linear-gradient(120deg, transparent 0 42%, rgba(214, 192, 142, 0.2) 48%, transparent 54%);
}

.commerce-fit-selector-head,
.commerce-fit-size-rail-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.commerce-fit-selector-head > span,
.commerce-fit-size-rail-head > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.siren-domain-page .commerce-fit-selector-head > span,
.siren-domain-page .commerce-fit-size-rail-head > span {
  color: var(--champagne);
}

.commerce-fit-selector-head .commerce-icon,
.commerce-fit-size-rail-head .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-fit-selector-head > strong,
.commerce-fit-size-rail-head > strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1;
  text-align: right;
}

.siren-domain-page .commerce-fit-selector-head > strong,
.siren-domain-page .commerce-fit-size-rail-head > strong {
  color: var(--paper);
}

.commerce-fit-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-fit-size-rail {
  display: grid;
  min-width: 0;
  gap: 10px;
  border: 1px solid rgba(26, 26, 26, 0.09);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.62);
}

.siren-domain-page .commerce-fit-size-rail {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.045);
}

.commerce-fit-size-chip-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  gap: 7px;
}

.commerce-fit-size-chip {
  display: grid;
  min-width: 0;
  min-height: 52px;
  align-content: center;
  gap: 3px;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 8px;
  padding: 8px 7px;
  color: var(--ink);
  font: inherit;
  text-align: center;
  background: rgba(255, 253, 248, 0.76);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.siren-domain-page .commerce-fit-size-chip {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(7, 16, 20, 0.34);
}

.commerce-fit-size-chip:hover,
.commerce-fit-size-chip:focus-visible {
  border-color: rgba(34, 94, 100, 0.36);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.1);
}

.siren-domain-page .commerce-fit-size-chip:hover,
.siren-domain-page .commerce-fit-size-chip:focus-visible {
  border-color: rgba(214, 192, 142, 0.42);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.commerce-fit-size-chip[data-selected="true"] {
  border-color: rgba(34, 94, 100, 0.54);
  background:
    linear-gradient(135deg, rgba(34, 94, 100, 0.16), rgba(255, 253, 248, 0.88)),
    rgba(255, 253, 248, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.58),
    0 12px 28px rgba(34, 94, 100, 0.12);
}

.siren-domain-page .commerce-fit-size-chip[data-selected="true"] {
  border-color: rgba(214, 192, 142, 0.62);
  background:
    linear-gradient(135deg, rgba(214, 192, 142, 0.24), rgba(255, 253, 248, 0.08)),
    rgba(7, 16, 20, 0.52);
}

.commerce-fit-size-chip:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.commerce-fit-size-chip strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1;
}

.commerce-fit-size-chip span {
  color: var(--smoke);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-fit-size-chip span {
  color: rgba(247, 244, 239, 0.58);
}

.commerce-fit-selector-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-fit-selector-notes article {
  display: grid;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(26, 26, 26, 0.09);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.54);
}

.siren-domain-page .commerce-fit-selector-notes article {
  border-color: rgba(247, 244, 239, 0.12);
  background: rgba(255, 253, 248, 0.04);
}

.commerce-fit-selector-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-fit-selector-notes span {
  color: var(--champagne);
}

.commerce-fit-selector-notes .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-fit-selector-notes p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.82rem;
  line-height: 1.5;
}

.siren-domain-page .commerce-fit-selector-notes p {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-fit-drawer-body > p,
.commerce-fit-guide-grid p,
.commerce-fit-drawer-note p {
  color: var(--smoke);
  line-height: 1.65;
}

.siren-domain-page .commerce-fit-drawer-body > p,
.siren-domain-page .commerce-fit-guide-grid p,
.siren-domain-page .commerce-fit-drawer-note p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-fit-drawer-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commerce-fit-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-fit-guide-grid article,
.commerce-fit-drawer-note {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 16px;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
}

.siren-domain-page .commerce-fit-guide-grid article,
.siren-domain-page .commerce-fit-drawer-note {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-fit-guide-grid span,
.commerce-fit-drawer-note span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-fit-guide-grid span,
.siren-domain-page .commerce-fit-drawer-note span {
  color: var(--champagne);
}

.commerce-fit-drawer-note {
  min-height: 0;
}

.commerce-fit-drawer-note a {
  color: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.commerce-mobile-buy-bar-shell {
  display: none;
}

.commerce-mobile-buy-bar {
  position: fixed;
  z-index: 120;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(92px, auto) 44px;
  gap: 8px;
  align-items: center;
  padding: 10px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(216, 226, 223, 0.46)),
    rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 56px rgba(26, 26, 26, 0.2);
  backdrop-filter: blur(18px);
}

.siren-domain-page .commerce-mobile-buy-bar {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.16), rgba(200, 169, 102, 0.12)),
    rgba(7, 16, 20, 0.96);
  box-shadow:
    0 0 0 1px rgba(247, 244, 239, 0.1),
    0 -18px 54px rgba(0, 0, 0, 0.52),
    0 18px 56px rgba(0, 0, 0, 0.42);
}

.commerce-mobile-buy-bar.is-restock {
  grid-template-columns: 56px minmax(0, 1fr) minmax(118px, auto);
  border-color: rgba(200, 169, 102, 0.34);
}

.siren-domain-page .commerce-mobile-buy-bar.is-restock {
  border-color: rgba(200, 169, 102, 0.36);
  background:
    linear-gradient(145deg, rgba(200, 169, 102, 0.16), rgba(255, 253, 248, 0.08)),
    rgba(7, 16, 20, 0.97);
}

.commerce-mobile-buy-visual {
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  width: 56px;
  height: 66px;
  margin: 0;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.32);
}

.siren-domain-page .commerce-mobile-buy-visual {
  border-color: rgba(247, 244, 239, 0.2);
  background: #071014;
}

.commerce-mobile-buy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commerce-mobile-buy-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 16, 20, 0.62));
}

.commerce-mobile-buy-visual span {
  position: absolute;
  z-index: 1;
  right: 4px;
  bottom: 4px;
  left: 4px;
  overflow: hidden;
  color: var(--paper);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-mobile-buy-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.commerce-mobile-buy-bar span,
.commerce-mobile-buy-bar p {
  color: var(--smoke);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.siren-domain-page .commerce-mobile-buy-bar span,
.siren-domain-page .commerce-mobile-buy-bar p {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-mobile-buy-bar strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-mobile-buy-progress {
  display: flex;
  gap: 4px;
  min-width: 0;
  margin-top: 2px;
  overflow: hidden;
}

.commerce-mobile-buy-progress span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
  min-height: 20px;
  padding: 0 6px;
  color: var(--smoke);
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  font-size: 0.52rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.siren-domain-page .commerce-mobile-buy-progress span {
  color: rgba(247, 244, 239, 0.66);
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.06);
}

.commerce-mobile-buy-progress span[data-ready="true"] {
  color: var(--ink);
  border-color: rgba(200, 169, 102, 0.42);
  background: rgba(200, 169, 102, 0.2);
}

.siren-domain-page .commerce-mobile-buy-progress span[data-ready="true"] {
  color: var(--champagne);
}

.commerce-mobile-buy-progress .commerce-icon {
  width: 10px;
  height: 10px;
}

.commerce-mobile-buy-bar p {
  grid-column: 2 / 3;
  margin: 0;
  white-space: nowrap;
}

.commerce-mobile-buy-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.commerce-mobile-buy-bar button[data-buy-bar-primary] {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  min-width: 0;
}

.commerce-mobile-buy-bar.is-restock button[data-buy-bar-primary] {
  border-color: rgba(200, 169, 102, 0.42);
  background: rgba(200, 169, 102, 0.18);
  color: var(--ink);
}

.siren-domain-page .commerce-mobile-buy-bar.is-restock button[data-buy-bar-primary] {
  color: var(--paper);
}

.commerce-mobile-buy-bar button .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-mobile-buy-bar button span {
  color: inherit;
  font-size: inherit;
  letter-spacing: 0;
  line-height: 1;
}

.siren-domain-page .commerce-mobile-buy-bar button span {
  color: inherit;
}

.commerce-mobile-buy-bar button[data-open-cart-drawer] strong {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  overflow: visible;
  color: var(--paper);
  border-radius: 50%;
  background: var(--ink);
  font: 700 0.66rem/1 var(--sans);
  text-overflow: clip;
  white-space: normal;
}

.siren-domain-page .commerce-mobile-buy-bar button {
  border-color: var(--paper);
  background: var(--paper);
  color: #071014;
}

.commerce-mobile-buy-bar button[data-open-cart-drawer] {
  position: relative;
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  width: 44px;
  min-width: 44px;
  padding: 0;
  gap: 0;
  background: transparent;
  color: var(--ink);
}

.commerce-mobile-buy-bar button[data-open-cart-drawer] span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: currentColor;
}

.commerce-mobile-buy-bar button[data-open-cart-drawer] strong {
  position: absolute;
  top: -6px;
  right: -6px;
  border: 1px solid currentColor;
}

.siren-domain-page .commerce-mobile-buy-bar button[data-open-cart-drawer] {
  color: var(--paper);
}

.siren-domain-page .commerce-mobile-buy-bar button[data-open-cart-drawer] strong {
  color: #071014;
  background: var(--paper);
}

.commerce-cart-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.commerce-cart-heading .eyebrow {
  grid-column: 1 / -1;
}

.commerce-cart-heading button,
.commerce-cart-item button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--smoke);
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.siren-domain-page .commerce-cart-heading button,
.siren-domain-page .commerce-cart-item button {
  border-color: rgba(247, 244, 239, 0.2);
  background: rgba(255, 253, 248, 0.08);
  color: rgba(247, 244, 239, 0.72);
}

.commerce-checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.commerce-checkout-steps span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.siren-domain-page .commerce-checkout-steps span {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(255, 253, 248, 0.07);
  color: rgba(247, 244, 239, 0.84);
}

.commerce-checkout-steps i {
  display: none;
}

.commerce-checkout-steps .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-checkout-runway {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(216, 226, 223, 0.28)),
    rgba(255, 253, 248, 0.56);
}

.commerce-checkout-runway::before {
  content: "";
  position: absolute;
  inset: -60% 35% auto -25%;
  height: 130%;
  background: radial-gradient(circle, rgba(205, 174, 101, 0.24), transparent 62%);
  opacity: 0.86;
  pointer-events: none;
}

.siren-domain-page .commerce-checkout-runway {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    linear-gradient(135deg, rgba(247, 244, 239, 0.08), rgba(12, 46, 48, 0.26)),
    rgba(255, 253, 248, 0.04);
}

.siren-domain-page .commerce-checkout-runway::before {
  background: radial-gradient(circle, rgba(205, 174, 101, 0.28), transparent 62%);
}

.commerce-checkout-runway-copy,
.commerce-checkout-runway-grid {
  position: relative;
  z-index: 1;
}

.commerce-checkout-runway-copy {
  display: grid;
  gap: 3px;
}

.commerce-checkout-runway-copy span,
.commerce-checkout-runway-card em,
.commerce-checkout-runway-card i {
  color: var(--smoke);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-checkout-runway-copy span,
.siren-domain-page .commerce-checkout-runway-card em,
.siren-domain-page .commerce-checkout-runway-card i {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-checkout-runway-copy strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.04;
}

.siren-domain-page .commerce-checkout-runway-copy strong {
  color: var(--paper);
}

.commerce-checkout-runway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.commerce-checkout-runway-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 82px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 9px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.commerce-checkout-runway-card:hover,
.commerce-checkout-runway-card:focus-visible {
  border-color: rgba(205, 174, 101, 0.62);
  box-shadow: 0 16px 32px rgba(26, 26, 26, 0.1);
  transform: translateY(-1px);
}

.commerce-checkout-runway-card.is-next {
  border-color: rgba(205, 174, 101, 0.68);
  background: rgba(205, 174, 101, 0.14);
}

.commerce-checkout-runway-card.is-ready {
  background: rgba(216, 226, 223, 0.42);
}

.siren-domain-page .commerce-checkout-runway-card {
  border-color: rgba(247, 244, 239, 0.13);
  background: rgba(255, 253, 248, 0.06);
  color: var(--paper);
}

.siren-domain-page .commerce-checkout-runway-card:hover,
.siren-domain-page .commerce-checkout-runway-card:focus-visible {
  border-color: rgba(205, 174, 101, 0.64);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.siren-domain-page .commerce-checkout-runway-card.is-next {
  background: rgba(205, 174, 101, 0.15);
}

.siren-domain-page .commerce-checkout-runway-card.is-ready {
  background: rgba(247, 244, 239, 0.09);
}

.commerce-checkout-runway-card span:not(.commerce-checkout-runway-icon) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.commerce-checkout-runway-card strong {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.04;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.siren-domain-page .commerce-checkout-runway-card strong {
  color: var(--paper);
}

.commerce-checkout-runway-card small {
  overflow: hidden;
  color: var(--smoke);
  font-size: 0.72rem;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.siren-domain-page .commerce-checkout-runway-card small {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-checkout-runway-card i {
  align-self: start;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
}

.commerce-checkout-runway-card.is-ready i {
  border-color: rgba(12, 46, 48, 0.18);
  background: rgba(12, 46, 48, 0.1);
  color: var(--teal);
}

.commerce-checkout-runway-card.is-next i {
  border-color: rgba(205, 174, 101, 0.55);
  background: rgba(205, 174, 101, 0.2);
  color: var(--ink);
}

.siren-domain-page .commerce-checkout-runway-card i {
  border-color: rgba(247, 244, 239, 0.13);
  background: rgba(255, 253, 248, 0.08);
  color: rgba(247, 244, 239, 0.78);
}

.siren-domain-page .commerce-checkout-runway-card.is-ready i,
.siren-domain-page .commerce-checkout-runway-card.is-next i {
  color: var(--champagne);
}

.commerce-checkout-runway-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(205, 174, 101, 0.36);
  border-radius: 999px;
  background: rgba(205, 174, 101, 0.1);
  color: var(--teal);
}

.siren-domain-page .commerce-checkout-runway-icon {
  color: var(--champagne);
}

.commerce-checkout-runway-icon .commerce-icon {
  width: 15px;
  height: 15px;
}

.commerce-checkout-handoff {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(118px, 32%) minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.7);
}

.commerce-checkout-handoff::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 253, 248, 0.56) 50%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(26, 26, 26, 0.035) 0 1px, transparent 1px 18px);
  opacity: 0.42;
  transform: translateX(-22%);
  transition: transform 520ms ease, opacity 260ms ease;
}

.commerce-checkout-handoff:hover::before,
.commerce-checkout-handoff:focus-within::before {
  opacity: 0.58;
  transform: translateX(18%);
}

.commerce-checkout-handoff[data-ready="true"] {
  border-color: rgba(163, 134, 67, 0.36);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 102, 0.1);
}

.siren-domain-page .commerce-checkout-handoff {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    linear-gradient(135deg, rgba(247, 244, 239, 0.08), rgba(12, 46, 48, 0.24)),
    rgba(255, 253, 248, 0.04);
}

.siren-domain-page .commerce-checkout-handoff::before {
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(214, 192, 142, 0.22) 50%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(247, 244, 239, 0.065) 0 1px, transparent 1px 18px);
}

.commerce-checkout-handoff figure {
  position: relative;
  min-width: 0;
  min-height: 180px;
  max-height: 340px;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-checkout-handoff figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 38%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.22), transparent 62%);
}

.commerce-checkout-handoff img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 460ms ease, filter 260ms ease;
}

.commerce-checkout-handoff:hover img,
.commerce-checkout-handoff:focus-within img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.commerce-checkout-handoff figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 9px 9px;
  display: grid;
  gap: 5px;
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.commerce-checkout-handoff figcaption span,
.commerce-checkout-handoff-copy > span,
.commerce-checkout-handoff-chips em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.commerce-checkout-handoff figcaption strong {
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 500;
  line-height: 0.96;
}

.commerce-checkout-handoff figcaption .commerce-icon,
.commerce-checkout-handoff-copy > span .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-checkout-handoff-copy {
  display: grid;
  min-width: 0;
  gap: 10px;
  align-content: center;
}

.commerce-checkout-handoff-copy > span {
  color: var(--teal);
}

.siren-domain-page .commerce-checkout-handoff-copy > span {
  color: var(--champagne);
}

.commerce-checkout-handoff-copy h3 {
  max-width: 28ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.58rem;
  font-weight: 500;
  line-height: 1;
}

.siren-domain-page .commerce-checkout-handoff-copy h3 {
  color: var(--paper);
}

.commerce-checkout-handoff-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.commerce-checkout-handoff-chips span {
  display: grid;
  min-width: 0;
  gap: 5px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
  padding: 9px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.68);
}

.siren-domain-page .commerce-checkout-handoff-chips span {
  border-color: rgba(247, 244, 239, 0.13);
  color: var(--paper);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-checkout-handoff-chips span[data-ready="true"] {
  border-color: rgba(163, 134, 67, 0.42);
  background: rgba(200, 169, 102, 0.14);
}

.commerce-checkout-handoff-chips .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.siren-domain-page .commerce-checkout-handoff-chips .commerce-icon {
  color: var(--champagne);
}

.commerce-checkout-handoff-chips em {
  color: var(--smoke);
}

.siren-domain-page .commerce-checkout-handoff-chips em {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-checkout-handoff-chips strong {
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.commerce-checkout-handoff-copy p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.76rem;
  line-height: 1.45;
}

.siren-domain-page .commerce-checkout-handoff-copy p {
  color: rgba(247, 244, 239, 0.66);
}

.commerce-cart-visual-summary {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(128px, 38%) minmax(0, 1fr);
  gap: 13px;
  align-items: stretch;
  overflow: hidden;
  min-height: 212px;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.32)),
    rgba(255, 253, 248, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.commerce-cart-visual-summary::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 253, 248, 0.3) 44%, transparent 62%),
    linear-gradient(180deg, transparent 62%, rgba(26, 26, 26, 0.08));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.siren-domain-page .commerce-cart-visual-summary {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    linear-gradient(135deg, rgba(247, 244, 239, 0.08), rgba(12, 46, 48, 0.32)),
    rgba(255, 253, 248, 0.035);
  box-shadow: inset 0 1px 0 rgba(247, 244, 239, 0.08);
}

.commerce-cart-visual-summary[data-ready="true"] {
  border-color: rgba(163, 134, 67, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 18px 40px rgba(26, 26, 26, 0.08);
}

.siren-domain-page .commerce-cart-visual-summary[data-ready="true"] {
  box-shadow:
    inset 0 1px 0 rgba(247, 244, 239, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.commerce-cart-visual-summary figure,
.commerce-cart-visual-copy,
.commerce-cart-visual-detail {
  position: relative;
  z-index: 2;
}

.commerce-cart-visual-summary figure {
  margin: 0;
  overflow: hidden;
  min-height: 192px;
  border-radius: 7px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-cart-visual-summary figure img {
  width: 100%;
  height: 100%;
  min-height: 192px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.commerce-cart-visual-summary:hover figure img,
.commerce-cart-visual-summary:focus-within figure img {
  transform: scale(1.055);
}

.commerce-cart-visual-summary figcaption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 7px;
  background: rgba(7, 16, 20, 0.46);
  color: #fffdf8;
  backdrop-filter: blur(12px);
}

.commerce-cart-visual-summary figcaption span,
.commerce-cart-visual-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-cart-visual-summary figcaption span {
  color: rgba(255, 253, 248, 0.78);
}

.commerce-cart-visual-summary figcaption strong {
  overflow: hidden;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-cart-visual-summary figcaption .commerce-icon,
.commerce-cart-visual-kicker .commerce-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.commerce-cart-visual-copy {
  display: grid;
  align-content: center;
  gap: 9px;
  min-width: 0;
  padding: 5px 0;
}

.commerce-cart-visual-kicker {
  color: var(--teal);
}

.siren-domain-page .commerce-cart-visual-kicker {
  color: var(--champagne);
}

.commerce-cart-visual-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.54rem;
  font-weight: 500;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.siren-domain-page .commerce-cart-visual-copy h3 {
  color: var(--paper);
}

.commerce-cart-visual-copy p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.82rem;
  line-height: 1.38;
}

.siren-domain-page .commerce-cart-visual-copy p {
  color: rgba(247, 244, 239, 0.66);
}

.commerce-cart-visual-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.commerce-cart-visual-pills span {
  display: grid;
  align-content: space-between;
  gap: 4px;
  min-width: 0;
  min-height: 68px;
  padding: 9px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.68);
}

.siren-domain-page .commerce-cart-visual-pills span {
  border-color: rgba(247, 244, 239, 0.12);
  background: rgba(255, 253, 248, 0.06);
}

.commerce-cart-visual-pills .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--champagne);
}

.commerce-cart-visual-pills small {
  color: var(--smoke);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-cart-visual-pills small {
  color: rgba(247, 244, 239, 0.56);
}

.commerce-cart-visual-pills strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.siren-domain-page .commerce-cart-visual-pills strong {
  color: var(--paper);
}

.commerce-cart-visual-detail {
  position: absolute;
  top: 13px;
  left: max(96px, calc(38% - 48px));
  display: grid;
  place-items: end;
  width: 74px;
  pointer-events: none;
}

.commerce-cart-visual-detail img {
  width: 74px;
  height: 92px;
  object-fit: cover;
  border: 2px solid rgba(255, 253, 248, 0.92);
  border-radius: 7px;
  box-shadow: 0 18px 36px rgba(7, 16, 20, 0.2);
}

.commerce-cart-visual-detail span {
  position: absolute;
  right: -7px;
  bottom: -7px;
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.75);
  border-radius: 999px;
  background: var(--champagne);
  color: #071014;
}

.commerce-cart-visual-detail .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-cart-visual-stack {
  position: absolute;
  top: 13px;
  left: max(96px, calc(38% - 58px));
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.commerce-cart-visual-stack span {
  display: block;
  width: 58px;
  height: 74px;
  margin-left: -18px;
  border: 2px solid rgba(255, 253, 248, 0.92);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.2);
  box-shadow: 0 18px 36px rgba(7, 16, 20, 0.22);
}

.commerce-cart-visual-stack span:first-child {
  margin-left: 0;
}

.commerce-cart-visual-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commerce-cart-visual-stack strong {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-left: -8px;
  border: 1px solid rgba(255, 253, 248, 0.74);
  border-radius: 999px;
  background: var(--champagne);
  color: #071014;
  font-size: 0.68rem;
  font-weight: 900;
}

.commerce-cart-drawer .commerce-cart-visual-summary {
  display: block;
  min-height: 438px;
}

.commerce-cart-drawer .commerce-cart-visual-summary figure {
  height: 240px;
  margin-bottom: 12px;
}

.commerce-cart-drawer .commerce-cart-visual-summary figure img {
  height: 240px;
  min-height: 240px;
}

.commerce-cart-drawer .commerce-cart-visual-detail {
  top: 20px;
  right: 20px;
  left: auto;
}

.commerce-cart-drawer .commerce-cart-visual-stack {
  top: 20px;
  right: 20px;
  left: auto;
}

.commerce-cart-list {
  display: grid;
  gap: 10px;
}

.commerce-cart-composition {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(216, 226, 223, 0.26)),
    rgba(255, 253, 248, 0.62);
}

.siren-domain-page .commerce-cart-composition {
  border-color: rgba(247, 244, 239, 0.12);
  background:
    linear-gradient(135deg, rgba(214, 192, 142, 0.1), rgba(12, 46, 48, 0.22)),
    rgba(255, 253, 248, 0.045);
}

.commerce-cart-composition-stack {
  display: flex;
  align-items: center;
  min-width: 70px;
}

.commerce-cart-composition-stack img {
  width: 42px;
  height: 52px;
  margin-left: -14px;
  object-fit: cover;
  border: 2px solid rgba(255, 253, 248, 0.9);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.18);
  box-shadow: 0 12px 26px rgba(7, 16, 20, 0.18);
}

.commerce-cart-composition-stack img:first-child {
  margin-left: 0;
}

.commerce-cart-composition span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.commerce-cart-composition strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.siren-domain-page .commerce-cart-composition strong {
  color: var(--paper);
}

.commerce-cart-composition small {
  overflow: hidden;
  color: var(--smoke);
  font-size: 0.66rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.siren-domain-page .commerce-cart-composition small {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.siren-domain-page .commerce-cart-item {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-cart-item img {
  width: 72px;
  height: 86px;
  object-fit: cover;
  border-radius: 6px;
}

.commerce-cart-drawer .commerce-cart-item {
  grid-template-columns: 72px minmax(0, 1fr);
}

.commerce-cart-drawer .commerce-cart-item button {
  grid-column: 1 / -1;
  justify-self: stretch;
}

.commerce-cart-item strong,
.commerce-cart-total strong,
.commerce-account-choice strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.05;
}

.siren-domain-page .commerce-cart-item strong,
.siren-domain-page .commerce-cart-total strong,
.siren-domain-page .commerce-account-choice strong {
  color: var(--paper);
}

.commerce-cart-item p {
  font-size: 0.76rem;
  line-height: 1.45;
}

.commerce-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.siren-domain-page .commerce-cart-total {
  border-color: rgba(247, 244, 239, 0.14);
}

.commerce-cart-total span,
.commerce-account-choice legend,
.commerce-account-choice > span,
.commerce-checkout-fields label span {
  color: var(--smoke);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siren-domain-page .commerce-cart-total span,
.siren-domain-page .commerce-account-choice legend,
.siren-domain-page .commerce-account-choice > span,
.siren-domain-page .commerce-checkout-fields label span {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-checkout-form {
  display: grid;
  gap: 14px;
}

.commerce-checkout-fieldset-grid {
  display: grid;
  gap: 10px;
}

.commerce-checkout-field-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.84), rgba(216, 226, 223, 0.24)),
    rgba(255, 253, 248, 0.58);
}

.siren-domain-page .commerce-checkout-field-group {
  border-color: rgba(247, 244, 239, 0.13);
  background:
    linear-gradient(145deg, rgba(247, 244, 239, 0.08), rgba(12, 46, 48, 0.18)),
    rgba(255, 253, 248, 0.045);
}

.commerce-checkout-field-group legend {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-width: 0;
  margin: 0 0 10px;
  padding: 0;
  color: var(--ink);
}

.siren-domain-page .commerce-checkout-field-group legend {
  color: var(--paper);
}

.commerce-checkout-field-group legend .commerce-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.siren-domain-page .commerce-checkout-field-group legend .commerce-icon {
  color: var(--champagne);
}

.commerce-checkout-field-group legend span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.commerce-checkout-field-group legend small {
  color: var(--smoke);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.siren-domain-page .commerce-checkout-field-group legend small {
  color: rgba(247, 244, 239, 0.62);
}

.commerce-checkout-field-group legend strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1;
}

.commerce-checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-checkout-fields label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.commerce-checkout-fields label:has(input[data-checkout-address-autocomplete]) {
  position: relative;
  overflow: visible;
  z-index: 3;
}

.commerce-checkout-fields label:has(input[data-checkout-address-autocomplete]) input {
  padding-right: 42px;
}

.commerce-checkout-address-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  max-height: min(220px, 42vh);
  overflow-y: auto;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  padding: 5px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 36px rgba(26, 26, 26, 0.16);
}

.commerce-checkout-address-suggestions[hidden] {
  display: none;
}

.commerce-checkout-address-suggestions button {
  display: grid;
  gap: 2px;
  min-height: 38px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.commerce-checkout-address-suggestions button:hover,
.commerce-checkout-address-suggestions button[aria-selected="true"] {
  background: rgba(216, 226, 223, 0.5);
}

.commerce-checkout-address-suggestions strong,
.commerce-checkout-address-suggestions small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-checkout-address-suggestions small {
  color: var(--smoke);
  font-size: 0.72rem;
}

.siren-domain-page .commerce-checkout-address-suggestions {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(7, 16, 20, 0.98);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.siren-domain-page .commerce-checkout-address-suggestions button {
  color: var(--paper);
}

.siren-domain-page .commerce-checkout-address-suggestions button:hover,
.siren-domain-page .commerce-checkout-address-suggestions button[aria-selected="true"] {
  background: rgba(247, 244, 239, 0.1);
}

.siren-domain-page .commerce-checkout-address-suggestions small {
  color: rgba(247, 244, 239, 0.6);
}

.commerce-checkout-fields label:has(input[data-checkout-address-autocomplete])::after {
  position: absolute;
  right: 13px;
  bottom: 12px;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(26, 26, 26, 0.28);
  border-radius: 50% 50% 50% 0;
  box-shadow: inset 0 0 0 3px rgba(255, 253, 248, 0.8);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  transform: rotate(-45deg);
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.commerce-checkout-fields label:has(input[data-places-autocomplete="loading"])::after {
  animation: checkoutPlacesCuePulse 1.2s ease-in-out infinite;
}

.commerce-checkout-fields label:has(input[data-places-autocomplete="ready"])::after {
  border-color: rgba(163, 134, 67, 0.9);
  box-shadow:
    inset 0 0 0 3px rgba(255, 253, 248, 0.86),
    0 0 0 4px rgba(200, 169, 102, 0.13);
  opacity: 1;
}

.siren-domain-page .commerce-checkout-fields label:has(input[data-checkout-address-autocomplete])::after {
  border-color: rgba(247, 244, 239, 0.36);
  box-shadow: inset 0 0 0 3px rgba(7, 16, 20, 0.86);
}

.siren-domain-page .commerce-checkout-fields label:has(input[data-places-autocomplete="ready"])::after {
  border-color: rgba(226, 196, 128, 0.98);
  box-shadow:
    inset 0 0 0 3px rgba(7, 16, 20, 0.86),
    0 0 0 4px rgba(226, 196, 128, 0.14);
}

@keyframes checkoutPlacesCuePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: rotate(-45deg) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: rotate(-45deg) scale(1.06);
  }
}

.commerce-checkout-fields label:nth-child(5),
.commerce-checkout-fields label:nth-child(6) {
  grid-column: 1 / -1;
}

.commerce-checkout-field-group .commerce-checkout-fields label:nth-child(5),
.commerce-checkout-field-group .commerce-checkout-fields label:nth-child(6) {
  grid-column: auto;
}

.commerce-checkout-field-group.is-delivery .commerce-checkout-fields label:nth-child(1),
.commerce-checkout-field-group.is-delivery .commerce-checkout-fields label:nth-child(2) {
  grid-column: 1 / -1;
}

.commerce-checkout-fields input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
}

.commerce-checkout-fields input[readonly] {
  color: var(--smoke);
  background: rgba(216, 226, 223, 0.34);
}

.siren-domain-page .commerce-checkout-fields input {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(255, 253, 248, 0.07);
  color: var(--paper);
}

.commerce-account-choice {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.58);
}

.commerce-account-choice:not(.is-signed-in) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commerce-account-choice legend,
.commerce-account-choice .commerce-checkout-password {
  grid-column: 1 / -1;
}

.siren-domain-page .commerce-account-choice {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-account-choice label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 253, 248, 0.58);
  font-size: 0.84rem;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.commerce-account-choice label:hover,
.commerce-account-choice label:focus-within {
  border-color: rgba(163, 134, 67, 0.36);
  transform: translateY(-1px);
}

.commerce-account-choice label:has(input:checked) {
  border-color: rgba(163, 134, 67, 0.48);
  background: rgba(200, 169, 102, 0.13);
}

.siren-domain-page .commerce-account-choice label {
  border-color: rgba(247, 244, 239, 0.12);
  background: rgba(255, 253, 248, 0.055);
}

.siren-domain-page .commerce-account-choice label:has(input:checked) {
  border-color: rgba(205, 174, 101, 0.48);
  background: rgba(205, 174, 101, 0.12);
}

.commerce-account-choice label .commerce-icon {
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.siren-domain-page .commerce-account-choice label .commerce-icon {
  color: var(--champagne);
}

.commerce-account-choice input {
  accent-color: var(--champagne);
}

.commerce-checkout-password {
  display: grid;
}

.commerce-checkout-password[hidden] {
  display: none;
}

.commerce-checkout-password label {
  display: grid;
  gap: 6px;
}

.commerce-checkout-password input {
  min-height: 42px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--ink);
  font: inherit;
}

.siren-domain-page .commerce-checkout-password input {
  border-color: rgba(247, 244, 239, 0.18);
  background: rgba(255, 253, 248, 0.07);
  color: var(--paper);
}

.commerce-checkout-assurance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
}

.commerce-checkout-assurance span {
  display: grid;
  min-width: 0;
  gap: 4px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.52);
}

.siren-domain-page .commerce-checkout-assurance span {
  border-color: rgba(247, 244, 239, 0.12);
  color: var(--paper);
  background: rgba(255, 253, 248, 0.05);
}

.commerce-checkout-assurance .commerce-icon {
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.siren-domain-page .commerce-checkout-assurance .commerce-icon {
  color: var(--champagne);
}

.commerce-checkout-assurance strong {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
}

.commerce-checkout-assurance small {
  color: var(--smoke);
  font-size: 0.68rem;
  line-height: 1.24;
}

.siren-domain-page .commerce-checkout-assurance small {
  color: rgba(247, 244, 239, 0.66);
}

.commerce-checkout-action-dock {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.32)),
    rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 46px rgba(26, 26, 26, 0.1);
}

.commerce-cart-drawer .commerce-checkout-action-dock {
  position: sticky;
  bottom: -1px;
  z-index: 4;
  backdrop-filter: blur(18px);
}

.commerce-checkout-action-dock[data-ready="true"] {
  border-color: rgba(163, 134, 67, 0.42);
}

.siren-domain-page .commerce-checkout-action-dock {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    linear-gradient(145deg, rgba(247, 244, 239, 0.09), rgba(12, 46, 48, 0.24)),
    rgba(7, 16, 20, 0.86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.siren-domain-page .commerce-checkout-action-dock[data-ready="true"] {
  border-color: rgba(205, 174, 101, 0.48);
}

.commerce-checkout-action-dock img,
.commerce-checkout-action-fallback {
  width: 58px;
  height: 66px;
  border-radius: 7px;
}

.commerce-checkout-action-dock img {
  object-fit: cover;
}

.commerce-checkout-action-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: rgba(216, 226, 223, 0.42);
}

.commerce-checkout-action-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.commerce-checkout-action-copy span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.siren-domain-page .commerce-checkout-action-copy span {
  color: var(--champagne);
}

.commerce-checkout-action-copy .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-checkout-action-copy strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 0.95;
}

.siren-domain-page .commerce-checkout-action-copy strong {
  color: var(--paper);
}

.commerce-checkout-action-copy small {
  color: var(--smoke);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.22;
}

.siren-domain-page .commerce-checkout-action-copy small {
  color: rgba(247, 244, 239, 0.66);
}

.commerce-checkout-action-steps {
  display: none;
}

.commerce-checkout-action-step {
  display: inline-grid;
  position: relative;
  place-items: center;
  min-width: 0;
  min-height: 34px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.5);
  color: var(--smoke);
  font: inherit;
  cursor: pointer;
}

.siren-domain-page .commerce-checkout-action-step {
  border-color: rgba(247, 244, 239, 0.14);
  background: rgba(255, 253, 248, 0.045);
  color: rgba(247, 244, 239, 0.64);
}

.commerce-checkout-action-step.is-ready,
.commerce-checkout-action-step.is-next {
  border-color: rgba(205, 174, 101, 0.34);
  color: var(--champagne);
}

.commerce-checkout-action-step .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-checkout-action-step i,
.commerce-checkout-action-step em {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-checkout-action-step::after {
  position: absolute;
  top: 5px;
  right: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(49, 52, 50, 0.28);
  content: "";
}

.siren-domain-page .commerce-checkout-action-step::after {
  background: rgba(247, 244, 239, 0.24);
}

.commerce-checkout-action-step.is-ready::after,
.commerce-checkout-action-step.is-next::after {
  background: var(--champagne);
  box-shadow: 0 0 0 3px rgba(205, 174, 101, 0.13);
}

.commerce-checkout-action-dock button[type="submit"],
.commerce-checkout-action-dock .form-status {
  grid-column: 1 / -1;
}

.commerce-cart-drawer .commerce-cart-drawer-top {
  display: flex;
  justify-content: flex-end;
  min-height: 42px;
  padding: 0 0 10px;
}

.commerce-cart-drawer :is(
  .commerce-cart-drawer-top > span,
  .commerce-cart-drawer-top h2,
  .commerce-cart-visual-copy p,
  .commerce-checkout-runway-copy,
  .commerce-checkout-runway-card span:not(.commerce-checkout-runway-icon),
  .commerce-checkout-runway-card em,
  .commerce-checkout-runway-card strong,
  .commerce-checkout-runway-card small,
  .commerce-checkout-handoff-copy > span,
  .commerce-checkout-handoff-copy h3,
  .commerce-checkout-handoff-copy p,
  .commerce-checkout-handoff-chips em,
  .commerce-checkout-assurance strong,
  .commerce-checkout-assurance small,
  .commerce-account-choice legend,
  .commerce-account-choice.is-signed-in > span,
  .commerce-account-choice.is-signed-in p,
  .commerce-checkout-field-group legend span,
  .commerce-checkout-fields label span,
  .commerce-checkout-action-copy small
) {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-cart-drawer .commerce-cart-drawer-top button {
  width: 40px;
  min-height: 40px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  font-size: 0;
}

.commerce-cart-drawer .commerce-cart-drawer-top button .commerce-icon {
  width: 16px;
  height: 16px;
}

.commerce-cart-drawer .commerce-cart-drawer-top button span {
  display: none;
}

.commerce-cart-drawer .commerce-checkout-steps {
  grid-template-columns: repeat(3, 40px);
  justify-content: start;
  gap: 6px;
}

.commerce-cart-drawer .commerce-checkout-steps span {
  justify-content: center;
  width: 40px;
  min-height: 36px;
  padding: 0;
  font-size: 0;
}

.commerce-cart-drawer .commerce-checkout-steps .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-cart-drawer .commerce-checkout-runway {
  gap: 8px;
  padding: 8px;
  border-radius: 10px;
}

.commerce-cart-drawer .commerce-checkout-runway-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.commerce-cart-drawer .commerce-checkout-runway-card {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 54px;
  padding: 9px 6px;
  text-align: center;
}

.commerce-cart-drawer .commerce-checkout-runway-card i {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.commerce-cart-drawer .commerce-checkout-runway-card.is-ready i,
.commerce-cart-drawer .commerce-checkout-runway-card.is-next i {
  box-shadow: 0 0 0 3px rgba(205, 174, 101, 0.12);
}

.commerce-cart-drawer .commerce-checkout-runway-icon {
  width: 32px;
  height: 32px;
}

.commerce-cart-drawer .commerce-checkout-handoff {
  grid-template-columns: minmax(104px, 0.42fr) minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
}

.commerce-cart-drawer .commerce-checkout-handoff figure {
  min-height: 162px;
}

.commerce-cart-drawer .commerce-checkout-handoff figcaption {
  inset: auto 8px 8px;
  gap: 4px;
}

.commerce-cart-drawer .commerce-checkout-handoff figcaption strong {
  font-size: 1.16rem;
}

.commerce-cart-drawer .commerce-checkout-handoff-copy {
  gap: 0;
}

.commerce-cart-drawer .commerce-checkout-handoff-chips {
  gap: 6px;
}

.commerce-cart-drawer .commerce-checkout-handoff-chips span {
  min-height: 46px;
  padding: 7px;
  align-content: space-between;
}

.commerce-cart-drawer .commerce-checkout-handoff-chips strong {
  font-size: 0.66rem;
}

.commerce-cart-drawer .commerce-checkout-fieldset-grid {
  gap: 8px;
}

.commerce-cart-drawer .commerce-checkout-field-group {
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0 8px;
  padding: 8px;
  border-radius: 7px;
}

.commerce-cart-drawer .commerce-checkout-field-group legend {
  grid-column: 1;
  grid-row: 1;
  display: inline-grid;
  justify-content: center;
  align-content: center;
  width: 36px;
  min-height: 36px;
  margin: 0;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
}

.siren-domain-page .commerce-cart-drawer .commerce-checkout-field-group legend {
  border-color: rgba(247, 244, 239, 0.15);
  background: rgba(255, 253, 248, 0.06);
}

.commerce-cart-drawer .commerce-checkout-field-group legend .commerce-icon {
  width: 14px;
  height: 14px;
}

.commerce-cart-drawer .commerce-checkout-fields {
  grid-column: 2;
  grid-row: 1;
  gap: 8px;
}

.commerce-cart-drawer .commerce-checkout-fields input {
  min-height: 38px;
  border-radius: 7px;
  padding: 0 10px;
  font-size: 0.84rem;
}

.commerce-cart-drawer .commerce-checkout-fields input::placeholder {
  color: rgba(49, 52, 50, 0.54);
  opacity: 1;
}

.siren-domain-page .commerce-cart-drawer .commerce-checkout-fields input::placeholder {
  color: rgba(247, 244, 239, 0.46);
}

.commerce-cart-drawer .commerce-checkout-assurance {
  grid-template-columns: repeat(3, 40px);
  justify-content: start;
  gap: 6px;
}

.commerce-cart-drawer .commerce-checkout-assurance span {
  place-items: center;
  width: 40px;
  min-height: 36px;
  padding: 0;
}

.commerce-cart-drawer .commerce-checkout-assurance .commerce-icon {
  width: 15px;
  height: 15px;
}

.commerce-cart-drawer .commerce-account-choice.is-signed-in {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  padding: 8px;
  gap: 8px;
}

.commerce-cart-drawer .commerce-account-choice.is-signed-in::before {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(205, 174, 101, 0.38);
  border-radius: 999px;
  background: rgba(205, 174, 101, 0.12);
  color: var(--teal);
  content: "";
  box-shadow: inset 0 0 0 4px rgba(255, 253, 248, 0.3);
}

.commerce-cart-drawer .commerce-account-choice.is-signed-in::after {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  color: var(--teal);
  content: "";
  transform: translate(-50%, -62%) rotate(-45deg);
}

.siren-domain-page .commerce-cart-drawer .commerce-account-choice.is-signed-in::before {
  border-color: rgba(205, 174, 101, 0.46);
  background: rgba(205, 174, 101, 0.13);
  color: var(--champagne);
  box-shadow: inset 0 0 0 4px rgba(247, 244, 239, 0.06);
}

.siren-domain-page .commerce-cart-drawer .commerce-account-choice.is-signed-in::after {
  color: var(--champagne);
}

.commerce-cart-drawer .commerce-account-choice.is-signed-in strong {
  min-width: 0;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-auth-form {
  display: grid;
  gap: 13px;
}

.commerce-auth-visual {
  display: grid;
  grid-template-columns: minmax(104px, 0.44fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  overflow: hidden;
}

.commerce-auth-visual figure {
  position: relative;
  min-width: 0;
  min-height: 176px;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-auth-visual figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 34%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.18), transparent 58%);
}

.commerce-auth-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 260ms ease;
}

.commerce-auth-visual:hover img,
.commerce-auth-visual:focus-within img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.04);
}

.commerce-auth-visual figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 9px 9px;
  display: grid;
  gap: 4px;
  color: var(--paper);
}

.commerce-auth-visual figcaption span,
.commerce-auth-visual-copy > span,
.commerce-auth-visual-chips span,
.commerce-auth-help-rail span,
.commerce-auth-help-rail a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-auth-visual figcaption strong {
  max-width: 9ch;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 0.98;
}

.commerce-auth-visual .commerce-icon,
.commerce-auth-help-rail .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-auth-visual-copy {
  display: grid;
  min-width: 0;
  gap: 9px;
  align-content: center;
}

.commerce-auth-visual-copy > span {
  color: var(--teal);
}

.siren-domain-page .commerce-auth-visual-copy > span {
  color: var(--champagne);
}

.commerce-auth-visual-copy h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 500;
  line-height: 1;
}

.siren-domain-page .commerce-auth-visual-copy h2 {
  color: var(--paper);
}

.commerce-auth-visual-copy p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.76rem;
  line-height: 1.45;
}

.siren-domain-page .commerce-auth-visual-copy p {
  color: rgba(247, 244, 239, 0.68);
}

.commerce-auth-visual-chips,
.commerce-auth-help-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.commerce-auth-visual-chips span,
.commerce-auth-help-rail span,
.commerce-auth-help-rail a {
  min-width: 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(255, 253, 248, 0.62);
  color: var(--ink);
  text-decoration: none;
}

.siren-domain-page .commerce-auth-visual-chips span,
.siren-domain-page .commerce-auth-help-rail span,
.siren-domain-page .commerce-auth-help-rail a {
  border-color: rgba(247, 244, 239, 0.13);
  background: rgba(255, 253, 248, 0.06);
  color: var(--paper);
}

.commerce-auth-visual-chips .commerce-icon,
.commerce-auth-help-rail .commerce-icon {
  color: var(--teal);
}

.siren-domain-page .commerce-auth-visual-chips .commerce-icon,
.siren-domain-page .commerce-auth-help-rail .commerce-icon {
  color: var(--champagne);
}

.commerce-auth-help-rail {
  padding-top: 2px;
}

.commerce-shop-account-prompt {
  display: grid;
  grid-template-columns: minmax(136px, 0.48fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.64);
}

.siren-domain-page .commerce-shop-account-prompt {
  border-color: rgba(247, 244, 239, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.08)),
    rgba(255, 253, 248, 0.04);
}

.commerce-shop-account-prompt figure {
  position: relative;
  min-height: 208px;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(26, 26, 26, 0.08);
}

.commerce-shop-account-prompt figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 32%, rgba(7, 16, 20, 0.84)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.16), transparent 60%);
}

.commerce-shop-account-prompt img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 260ms ease;
}

.commerce-shop-account-prompt:hover img,
.commerce-shop-account-prompt:focus-within img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.035);
}

.commerce-shop-account-prompt figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 9px 9px;
  display: grid;
  gap: 4px;
  color: var(--paper);
}

.commerce-shop-account-prompt figcaption span,
.commerce-shop-account-prompt > div > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-shop-account-prompt figcaption strong {
  max-width: 9ch;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 0.98;
}

.commerce-shop-account-prompt > div {
  display: grid;
  min-width: 0;
  gap: 10px;
  align-content: center;
}

.commerce-shop-account-prompt > div > span {
  color: var(--teal);
}

.siren-domain-page .commerce-shop-account-prompt > div > span {
  color: var(--champagne);
}

.commerce-shop-account-prompt h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1;
}

.siren-domain-page .commerce-shop-account-prompt h2 {
  color: var(--paper);
}

.commerce-shop-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.commerce-shop-account-actions a,
.commerce-shop-account-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.64rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.commerce-shop-account-actions button {
  background: transparent;
  color: var(--ink);
}

.siren-domain-page .commerce-shop-account-actions a {
  border-color: rgba(247, 244, 239, 0.24);
  background: var(--paper);
  color: #071014;
}

.siren-domain-page .commerce-shop-account-actions button {
  border-color: rgba(247, 244, 239, 0.22);
  color: var(--paper);
}

@media (min-width: 861px) {
  .commerce-pdp-account.commerce-account {
    width: min(860px, 76vw);
  }

  .commerce-pdp-account [data-product-account-prompt] {
    grid-template-columns: minmax(320px, 0.62fr) minmax(220px, 0.38fr);
    gap: 16px;
    align-items: stretch;
    padding: 12px;
    box-shadow: 0 28px 72px rgba(26, 26, 26, 0.1);
  }

  .siren-domain-page .commerce-pdp-account [data-product-account-prompt] {
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  }

  .commerce-pdp-account [data-product-account-prompt] figure {
    min-height: 252px;
  }

  .commerce-pdp-account [data-product-account-prompt] > div {
    gap: 9px;
    align-content: center;
    padding: 6px 4px;
  }

  .commerce-pdp-account [data-product-account-prompt] h2 {
    max-width: 12ch;
    font-size: clamp(1.5rem, 2.1vw, 2rem);
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-auth-visual-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-auth-visual-chips span {
    justify-content: center;
    min-height: 32px;
    padding-inline: 8px;
    font-size: 0.52rem;
    white-space: nowrap;
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions a,
  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions button {
    width: 100%;
    min-height: 40px;
    padding-inline: 10px;
  }
}

.commerce-auth-form label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-auth-form input {
  min-height: 46px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 0;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
}

.siren-domain-page .commerce-auth-form input {
  border-color: rgba(247, 244, 239, 0.24);
  background: rgba(255, 253, 248, 0.08);
  color: var(--paper);
}

.commerce-auth-actions,
.commerce-provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.commerce-auth-actions button,
.commerce-provider-actions button {
  gap: 8px;
}

.commerce-auth-actions button + button,
.commerce-provider-actions button {
  background: transparent;
  color: var(--ink);
}

.siren-domain-page .commerce-auth-actions button + button,
.siren-domain-page .commerce-provider-actions button {
  background: transparent;
  color: var(--paper);
}

.commerce-auth-actions button[data-reset-password] {
  border-color: rgba(26, 26, 26, 0.18);
  background: transparent;
  color: var(--smoke);
}

.siren-domain-page .commerce-auth-actions button[data-reset-password] {
  border-color: rgba(247, 244, 239, 0.24);
  color: rgba(247, 244, 239, 0.72);
}

.commerce-account-card {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.92), rgba(216, 226, 223, 0.3)),
    rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(16px);
}

.siren-domain-page .commerce-account-card {
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.1), rgba(200, 169, 102, 0.08)),
    rgba(255, 253, 248, 0.055);
}

.commerce-account-email {
  color: var(--smoke);
  overflow-wrap: anywhere;
}

.commerce-ledger-grid article {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.commerce-ledger-grid h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.commerce-help-copy,
.commerce-order-history-heading p,
.commerce-order-item p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.86rem;
  line-height: 1.7;
}

.siren-domain-page .commerce-help-copy,
.siren-domain-page .commerce-order-history-heading p,
.siren-domain-page .commerce-order-item p {
  color: rgba(247, 244, 239, 0.72);
}

.commerce-help-copy a,
.commerce-order-history a {
  color: inherit;
}

.commerce-order-history {
  display: grid;
  gap: 14px;
}

.commerce-order-history-heading {
  display: grid;
  gap: 6px;
}

.commerce-order-history-heading h3,
.commerce-order-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.commerce-order-list {
  display: grid;
  gap: 12px;
}

.commerce-order-item {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.58);
}

.siren-domain-page .commerce-order-item {
  border-color: rgba(247, 244, 239, 0.2);
  background: rgba(255, 253, 248, 0.055);
}

.commerce-order-meta,
.commerce-order-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
  justify-content: space-between;
}

.commerce-order-details span,
.commerce-order-meta span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-order-item.is-empty {
  gap: 8px;
}

.commerce-gateway-showcase {
  display: grid;
  gap: 22px;
}

.commerce-gateway-showcase.is-compact {
  gap: 16px;
}

.commerce-catalog-entry-status-only {
  min-height: 0;
  padding: 0;
}

.commerce-catalog-entry-status-only .commerce-status:empty {
  display: none;
}

.commerce-gateway-showcase.is-compact .commerce-group-visual-gateway {
  padding: clamp(14px, 2vw, 20px);
}

.commerce-gateway-showcase.is-compact .commerce-group-gateway-look {
  min-height: clamp(300px, 34vw, 390px);
}

.commerce-gateway-showcase.is-compact .commerce-brand-compass-card {
  grid-template-rows: minmax(250px, 0.86fr) auto auto;
}

.commerce-gateway-showcase.is-compact .commerce-brand-compass-card figure {
  min-height: 250px;
}

.commerce-gateway-showcase.is-compact .commerce-brand-compass-strip,
.commerce-gateway-showcase.is-compact .commerce-brand-compass-strip img {
  min-height: 96px;
}

.commerce-group-visual-gateway {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: clamp(16px, 2.8vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 226, 223, 0.58), rgba(255, 253, 248, 0.92)),
    var(--paper);
}

.commerce-group-visual-copy {
  display: grid;
  min-width: 0;
  gap: 14px;
  align-content: center;
}

.commerce-group-visual-copy > span,
.commerce-group-gateway-signals em,
.commerce-group-gateway-look em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-group-visual-copy > span {
  color: var(--teal);
}

.commerce-group-visual-copy h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  font-weight: 500;
  line-height: 0.88;
}

.commerce-group-visual-copy p {
  max-width: 44ch;
  margin: 0;
  color: var(--smoke);
  font-size: 0.92rem;
  line-height: 1.62;
}

.commerce-group-gateway-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.commerce-group-gateway-signals span {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
}

.commerce-group-gateway-signals .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.commerce-group-gateway-signals em {
  color: var(--smoke);
}

.commerce-group-gateway-signals strong {
  min-width: 0;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.commerce-group-visual-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.commerce-group-gateway-look {
  position: relative;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--paper);
  background: #071014;
  text-decoration: none;
  isolation: isolate;
}

.commerce-group-gateway-look.is-angel {
  color: var(--ink);
  background: var(--paper);
}

.commerce-group-gateway-look::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 34%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.24), transparent 60%);
}

.commerce-group-gateway-look.is-angel::after {
  background:
    linear-gradient(180deg, transparent 38%, rgba(255, 253, 248, 0.82)),
    linear-gradient(90deg, rgba(255, 253, 248, 0.18), transparent 62%);
}

.commerce-group-gateway-look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 680ms ease, filter 320ms ease;
}

.commerce-group-gateway-look:hover img,
.commerce-group-gateway-look:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.05);
}

.commerce-group-gateway-look span {
  position: absolute;
  z-index: 1;
  inset: auto 14px 14px;
  display: grid;
  gap: 6px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

.commerce-group-gateway-look.is-angel span {
  text-shadow: none;
}

.commerce-group-gateway-look em {
  color: rgba(247, 244, 239, 0.82);
}

.commerce-group-gateway-look.is-angel em {
  color: rgba(19, 57, 61, 0.72);
}

.commerce-group-gateway-look strong {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 500;
  line-height: 0.9;
}

.commerce-group-gateway-look small {
  max-width: 18ch;
  color: rgba(247, 244, 239, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.commerce-group-gateway-look.is-angel small {
  color: rgba(26, 26, 26, 0.64);
}

.commerce-gateway-section {
  display: grid;
  gap: 32px;
}

.commerce-brand-compass {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-brand-compass-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(310px, 1.08fr) auto auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  color: var(--paper);
  background: #071014;
  text-decoration: none;
  isolation: isolate;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 220ms ease;
}

.commerce-brand-compass-card.is-angel {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(216, 226, 223, 0.54)),
    var(--paper);
}

.commerce-brand-compass-card:hover,
.commerce-brand-compass-card:focus-visible {
  border-color: rgba(200, 169, 102, 0.44);
  box-shadow: 0 28px 70px rgba(26, 26, 26, 0.16);
  transform: translateY(-3px);
}

.commerce-brand-compass-card figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.12);
}

.commerce-brand-compass-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(7, 16, 20, 0.72)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.2), transparent 64%);
}

.commerce-brand-compass-card.is-angel figure::after {
  background:
    linear-gradient(180deg, transparent 36%, rgba(255, 253, 248, 0.72)),
    linear-gradient(90deg, rgba(255, 253, 248, 0.16), transparent 64%);
}

.commerce-brand-compass-primary {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 640ms ease, filter 320ms ease;
}

.commerce-brand-compass-card:hover .commerce-brand-compass-primary,
.commerce-brand-compass-card:focus-visible .commerce-brand-compass-primary {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.05);
}

.commerce-brand-compass-card figure span {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 32px);
  padding: 8px 10px;
  border: 1px solid rgba(247, 244, 239, 0.32);
  border-radius: 999px;
  color: rgba(247, 244, 239, 0.88);
  background: rgba(7, 16, 20, 0.5);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.commerce-brand-compass-card.is-angel figure span {
  border-color: rgba(255, 253, 248, 0.62);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.58);
}

.commerce-brand-compass-card figure .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-brand-compass-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.commerce-brand-compass-copy strong {
  max-width: 14ch;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 0.96;
}

.commerce-brand-compass-copy p {
  max-width: 42ch;
  margin: 0;
  color: rgba(247, 244, 239, 0.72);
  font-size: 0.9rem;
  line-height: 1.52;
}

.commerce-brand-compass-card.is-angel .commerce-brand-compass-copy p {
  color: var(--smoke);
}

.commerce-brand-compass-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commerce-brand-compass-copy li,
.commerce-brand-compass-copy em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(247, 244, 239, 0.2);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(247, 244, 239, 0.84);
  background: rgba(255, 253, 248, 0.08);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commerce-brand-compass-card.is-angel .commerce-brand-compass-copy li,
.commerce-brand-compass-card.is-angel .commerce-brand-compass-copy em {
  border-color: rgba(26, 26, 26, 0.11);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.62);
}

.commerce-brand-compass-copy .commerce-icon {
  width: 13px;
  height: 13px;
  color: var(--champagne);
}

.commerce-brand-compass-card.is-angel .commerce-brand-compass-copy .commerce-icon {
  color: var(--gold);
}

.commerce-brand-compass-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: 132px;
  background: rgba(255, 253, 248, 0.1);
}

.commerce-brand-compass-strip img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

.commerce-gateway-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 0;
  align-content: start;
  padding: 0;
  color: var(--ink);
}

.commerce-gateway-card-siren {
  background: #071014;
  color: var(--paper);
}

.commerce-gateway-card-angel {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(216, 226, 223, 0.5)),
    var(--paper);
}

.commerce-gateway-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
}

.commerce-gateway-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.48));
}

.commerce-gateway-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.commerce-gateway-card:hover .commerce-gateway-visual img,
.commerce-gateway-card:focus-within .commerce-gateway-visual img {
  transform: scale(1.025);
}

.commerce-gateway-card > :not(.commerce-gateway-visual) {
  margin-inline: 26px;
}

.commerce-gateway-card > .eyebrow {
  margin-top: 10px;
}

.commerce-gateway-card > .domain-button {
  justify-self: start;
  margin-bottom: 26px;
}

.commerce-gateway-card-siren p {
  color: rgba(247, 244, 239, 0.76);
}

.commerce-group-confidence {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: clamp(14px, 2.4vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.56)),
    var(--paper);
}

.commerce-group-confidence figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #071014;
}

.commerce-group-confidence figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 38%, rgba(7, 16, 20, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 20, 0.24), transparent 62%);
}

.commerce-group-confidence img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 680ms ease, filter 320ms ease;
}

.commerce-group-confidence:hover img,
.commerce-group-confidence:focus-within img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.commerce-group-confidence figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 14px 14px;
  display: grid;
  gap: 6px;
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.commerce-group-confidence figcaption span,
.commerce-group-confidence-copy > span,
.commerce-group-confidence-grid em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-group-confidence figcaption strong {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 0.92;
}

.commerce-group-confidence-copy {
  display: grid;
  min-width: 0;
  gap: 14px;
  align-content: center;
}

.commerce-group-confidence-copy > span {
  color: var(--teal);
}

.commerce-group-confidence-copy h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.9;
}

.commerce-group-confidence-copy p {
  max-width: 52ch;
  margin: 0;
  color: var(--smoke);
  font-size: 0.9rem;
  line-height: 1.6;
}

.commerce-group-confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.commerce-group-confidence-grid span {
  display: grid;
  min-width: 0;
  gap: 5px;
  min-height: 118px;
  padding: 11px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 7px;
}

.commerce-group-confidence-grid .commerce-icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.commerce-group-confidence-grid em {
  color: var(--smoke);
}

.commerce-group-confidence-grid strong {
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.commerce-group-confidence-grid small {
  color: var(--smoke);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.38;
}

.commerce-gateway-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.1);
}

.commerce-gateway-trust article {
  display: grid;
  gap: 7px;
  min-height: 138px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.78);
}

.commerce-gateway-trust strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
}

.commerce-gateway-trust span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.commerce-gateway-trust p {
  color: var(--smoke);
  font-size: 0.86rem;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 32px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  }

  .hero-copy {
    padding-left: 6.5vw;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .brand-house-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    gap: 32px;
  }

  .brand-house-hero h1 {
    font-size: 4.7rem;
  }

  .brand-house-signals div {
    padding: 20px;
  }

  .brand-choice-section {
    grid-template-columns: 1fr;
  }

  .brand-choice-copy {
    max-width: 680px;
  }

  .about-section {
    grid-template-columns: 0.85fr 1fr;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .mood-board {
    grid-column: 1 / -1;
  }

  .status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 0;
  }

  .status-item:nth-child(4) {
    border-left: 0;
  }

  .path-section {
    grid-template-columns: 1fr;
  }

  .path-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header > *,
  .domain-header > * {
    min-width: 0;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .site-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    overflow-x: visible;
    padding-top: 2px;
    padding-bottom: 4px;
  }

  .header-action {
    justify-self: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 46%, rgba(255, 253, 248, 0.34) 100%),
      url("/assets/salt-silk-hero.png") center / cover no-repeat;
  }

  .hero-copy {
    max-width: none;
    min-height: 560px;
    padding: 58px 24px 170px;
  }

  .hero-copy .lede,
  .brand-detail-hero .lede {
    max-width: none;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-question {
    font-size: 1.95rem;
  }

  .brand-house-hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 58px 24px 250px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.94) 48%, rgba(255, 253, 248, 0.38) 75%, rgba(7, 16, 20, 0.14) 100%),
      url("/assets/siren-domain-hero.jpg") left bottom / 50% 260px no-repeat,
      url("/assets/angel-domain-hero.jpg") right bottom / 50% 260px no-repeat,
      var(--paper);
  }

  .brand-house-hero-copy,
  .brand-house-hero .lede {
    max-width: none;
  }

  .brand-house-hero h1 {
    font-size: 4rem;
  }

  .brand-house-signals,
  .brand-world-grid,
  .brand-choice-grid {
    grid-template-columns: 1fr;
  }

  .brand-world-card figure {
    min-height: 280px;
  }

  .brand-choice-grid article {
    min-height: 0;
  }

  .brand-panels,
  .vision-section,
  .pillars-section {
    grid-template-columns: 1fr;
  }

  .brand-panel {
    min-height: 330px;
  }

  .panel-copy {
    margin-left: 24px;
  }

  .vision-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journal-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .application-hero,
  .application-process {
    grid-template-columns: 1fr;
  }

  .application-copy {
    position: static;
    max-width: none;
  }

  .detail-section,
  .detail-grid,
  .content-visual-grid {
    grid-template-columns: 1fr;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-monogram {
    font-size: 1.04rem;
  }

  .brand-type {
    min-width: 94px;
    font-size: 0.94rem;
  }

  .brand-type span:last-child::before,
  .brand-type span:last-child::after {
    width: 18px;
  }

  .header-action {
    min-width: 126px;
    padding: 10px 12px;
    font-size: 0.7rem;
    width: min(100%, 230px);
  }

  .site-nav {
    max-width: 290px;
    gap: 10px 13px;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 0.68rem;
  }

  .commerce-group-shop-page .site-header {
    display: flex;
    min-height: 64px;
    justify-content: center;
    padding: 12px 18px;
  }

  .commerce-group-shop-page .brand {
    justify-content: center;
  }

  .commerce-group-shop-page .site-nav,
  .commerce-group-shop-page .header-action {
    display: none;
  }

  .hero-copy {
    min-height: 570px;
    padding: 42px 18px 180px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-question {
    margin-top: 22px;
    font-size: 1.42rem;
  }

  .hero-copy .lede {
    max-width: 320px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .brand-house-hero {
    padding: 44px 18px 226px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.95) 56%, rgba(255, 253, 248, 0.34) 82%, rgba(7, 16, 20, 0.12) 100%),
      url("/assets/siren-domain-hero.jpg") left bottom / 50% 220px no-repeat,
      url("/assets/angel-domain-hero.jpg") right bottom / 50% 220px no-repeat,
      var(--paper);
  }

  .brand-house-hero h1 {
    font-size: 3rem;
    line-height: 0.96;
  }

  .brand-house-actions {
    gap: 10px;
  }

  .brand-house-signals div {
    min-height: 0;
    padding: 18px;
  }

  .brand-worlds-section,
  .brand-choice-section,
  .brand-house-cta {
    padding: 46px 18px;
  }

  .brand-house-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .brand-house-heading h2,
  .brand-choice-copy h2,
  .brand-house-cta h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .brand-world-card figure {
    min-height: 236px;
  }

  .brand-world-body {
    padding: 22px;
  }

  .brand-world-card h3 {
    font-size: 2.35rem;
  }

  .brand-tagline {
    font-size: 1.24rem;
  }

  .brand-signal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .brand-choice-grid article {
    padding: 22px;
  }

  .brand-choice-grid h3 {
    margin-top: 18px;
  }

  .brand-panel {
    min-height: 356px;
  }

  .siren-panel::after {
    background:
      linear-gradient(90deg, rgba(10, 31, 34, 0.96) 0%, rgba(10, 31, 34, 0.72) 62%, rgba(10, 31, 34, 0.1) 100%);
  }

  .angel-panel::after {
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.86) 62%, rgba(255, 253, 248, 0.22) 100%);
  }

  .panel-copy {
    width: min(300px, calc(100% - 36px));
    margin-left: 18px;
  }

  .brand-panel h2 {
    font-size: 2.15rem;
  }

  .status-section,
  .path-section,
  .about-section,
  .trust-section,
  .brand-detail-hero,
  .detail-section,
  .vision-copy,
  .waitlist-card,
  .journal-strip,
  .site-footer {
    padding-inline: 18px;
  }

  .status-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .status-item,
  .status-item:nth-child(4) {
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .status-item:first-child {
    border-top: 0;
  }

  .path-section {
    gap: 30px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .path-intro h2 {
    font-size: 2rem;
  }

  .path-steps {
    grid-template-columns: 1fr;
  }

  .path-steps article {
    min-height: 0;
    padding: 24px 20px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .monogram-letter {
    font-size: 6.5rem;
  }

  .monogram-amp {
    font-size: 3.4rem;
  }

  .about-logo strong {
    font-size: 2.2rem;
  }

  .about-copy h2,
  .founder-note h2,
  .vision-copy h2,
  .waitlist-card h2,
  .journal-strip h2 {
    font-size: 1.85rem;
  }

  .pillars-section {
    padding: 0 18px 34px;
  }

  .pillars-section article {
    min-height: 0;
    padding: 22px 0;
    border-top: 1px solid var(--line);
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-form > input[type="email"],
  .waitlist-form select {
    border-right: 1px solid rgba(26, 26, 26, 0.18);
    border-bottom: 0;
  }

  .waitlist-form button {
    width: 100%;
  }

  .journal-strip {
    gap: 24px;
  }

  .brand-detail-hero {
    min-height: 620px;
    padding-top: 52px;
    padding-bottom: 140px;
  }

  .brand-detail-hero > div {
    max-width: none;
  }

  .brand-detail-hero h1 {
    font-size: 2.25rem;
    line-height: 1;
  }

  .legal-page h1 {
    font-size: 2.75rem;
    line-height: 1.03;
  }

  .brand-detail-hero .lede {
    max-width: 320px;
    font-size: 0.95rem;
  }

  .siren-detail,
  .siren-detail-hero {
    background:
      linear-gradient(180deg, rgba(8, 28, 31, 0.96), rgba(8, 28, 31, 0.78) 55%, rgba(8, 28, 31, 0.22)),
      url("/assets/siren-domain-hero.jpg") center bottom / cover no-repeat;
  }

  .angel-detail,
  .angel-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.84) 55%, rgba(255, 253, 248, 0.28)),
      url("/assets/angel-domain-hero.jpg") center bottom / cover no-repeat;
  }

  .detail-copy h2,
  .legal-page h2 {
    font-size: 1.85rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .message-page {
    padding: 42px 18px;
  }

  .message-page h1 {
    font-size: 3rem;
  }

  .application-hero {
    padding: 42px 18px 54px;
  }

  .application-shell {
    grid-template-columns: 1fr;
    padding: 0 18px 54px;
  }

  .application-copy h1 {
    font-size: 2.7rem;
    line-height: 0.96;
  }

  .application-image {
    display: none;
  }

  .application-form {
    padding: 20px;
  }

  .application-language-card {
    grid-template-columns: 1fr;
  }

  .application-language-toggle {
    width: 100%;
    min-width: 0;
  }

  .application-field-grid,
  .application-choice-grid,
  .application-choice-grid--compact,
  .application-scorecard {
    grid-template-columns: 1fr;
  }

  .application-process {
    padding: 42px 18px 54px;
  }
}

@media (max-width: 1180px) {
  .domain-header {
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    padding-inline: 32px;
  }

  .domain-nav {
    gap: 24px;
  }

  .domain-hero-copy {
    width: min(500px, 52vw);
  }
}

@media (max-width: 900px) {
  .domain-header {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 16px 18px;
    text-align: center;
  }

  .domain-header-dark {
    background: #071014;
  }

  .domain-header-light {
    background: rgba(247, 244, 239, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .domain-nav {
    flex-wrap: wrap;
    width: 100%;
    max-width: 560px;
    justify-content: center;
    gap: 12px 20px;
  }

  .domain-header-action {
    justify-self: center;
    min-height: 42px;
    padding-block: 10px;
  }

  .brand-domain-page.commerce-shop-page .domain-header,
  .brand-domain-page.commerce-product-detail-page .domain-header {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 16px;
    text-align: left;
  }

  .brand-domain-page.commerce-shop-page .domain-wordmark,
  .brand-domain-page.commerce-product-detail-page .domain-wordmark {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .brand-domain-page.commerce-shop-page .domain-header-action,
  .brand-domain-page.commerce-product-detail-page .domain-header-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .brand-domain-page.commerce-shop-page .domain-nav,
  .brand-domain-page.commerce-product-detail-page .domain-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    gap: 8px;
  }

  .brand-domain-page.commerce-shop-page .domain-nav {
    display: inline-flex;
    width: auto;
    justify-self: center;
    gap: 10px;
  }

  .brand-domain-page.commerce-product-detail-page .domain-nav {
    grid-template-columns: repeat(3, 40px);
    justify-content: center;
  }

  .brand-domain-page.commerce-shop-page .domain-nav a,
  .brand-domain-page.commerce-product-detail-page .domain-nav a {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 999px;
    background:
      radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.22), transparent 28%),
      color-mix(in srgb, currentColor 7%, transparent);
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.12),
      inset 0 0 0 1px color-mix(in srgb, currentColor 12%, transparent);
    color: inherit;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    text-align: center;
  }

  .brand-domain-page.commerce-shop-page .domain-nav a[href="/fit-fabric"],
  .brand-domain-page.commerce-shop-page .domain-nav a[href="/account"],
  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/shop"],
  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/fit-fabric"],
  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/account"] {
    display: inline-flex;
  }

  .brand-domain-page.commerce-shop-page .domain-nav a::before,
  .brand-domain-page.commerce-shop-page .domain-nav a::after,
  .brand-domain-page.commerce-product-detail-page .domain-nav a::before,
  .brand-domain-page.commerce-product-detail-page .domain-nav a::after {
    content: "";
    position: absolute;
    display: block;
    pointer-events: none;
  }

  .brand-domain-page.commerce-shop-page .domain-nav a[href="/fit-fabric"]::before,
  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/fit-fabric"]::before {
    width: 22px;
    height: 8px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    background:
      repeating-linear-gradient(
        90deg,
        currentColor 0 1px,
        transparent 1px 5px
      );
    transform: rotate(-20deg);
  }

  .brand-domain-page.commerce-shop-page .domain-nav a[href="/fit-fabric"]::after,
  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/fit-fabric"]::after {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(8px, -7px);
  }

  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/shop"]::before {
    width: 16px;
    height: 15px;
    border: 1.6px solid currentColor;
    border-radius: 3px 3px 5px 5px;
    transform: translateY(3px);
  }

  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/shop"]::after {
    width: 9px;
    height: 7px;
    border: 1.6px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    transform: translateY(-7px);
  }

  .brand-domain-page.commerce-shop-page .domain-nav a[href="/account"]::before,
  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/account"]::before {
    width: 8px;
    height: 8px;
    border: 1.6px solid currentColor;
    border-radius: 999px;
    transform: translateY(-6px);
  }

  .brand-domain-page.commerce-shop-page .domain-nav a[href="/account"]::after,
  .brand-domain-page.commerce-product-detail-page .domain-nav a[href="/account"]::after {
    width: 17px;
    height: 9px;
    border: 1.6px solid currentColor;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    transform: translateY(7px);
  }

  .brand-domain-page.commerce-shop-page .domain-nav a:hover,
  .brand-domain-page.commerce-shop-page .domain-nav a:focus-visible,
  .brand-domain-page.commerce-product-detail-page .domain-nav a:hover,
  .brand-domain-page.commerce-product-detail-page .domain-nav a:focus-visible {
    background:
      radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.32), transparent 30%),
      color-mix(in srgb, currentColor 14%, transparent);
    transform: translateY(-1px);
  }

  .domain-hero {
    min-height: 720px;
    align-items: start;
    padding: 54px 18px 78px;
  }

  .angel-domain-page .domain-hero {
    justify-items: center;
    padding-inline: 0;
  }

  .domain-hero::before {
    background-position: center bottom;
    background-size: cover;
  }

  .siren-domain-hero::after {
    background:
      linear-gradient(180deg, rgba(7, 16, 20, 0.96) 0%, rgba(7, 16, 20, 0.88) 36%, rgba(7, 16, 20, 0.52) 68%, rgba(7, 16, 20, 0.18) 100%),
      linear-gradient(90deg, rgba(7, 16, 20, 0.82), rgba(7, 16, 20, 0.32));
  }

  .angel-domain-hero::after {
    background:
      linear-gradient(180deg, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.94) 42%, rgba(247, 244, 239, 0.7) 72%, rgba(247, 244, 239, 0.32) 100%),
      linear-gradient(90deg, rgba(247, 244, 239, 0.9), rgba(216, 226, 223, 0.26));
  }

  .domain-hero-copy {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .angel-domain-page .domain-hero-copy {
    justify-self: center;
    width: min(calc(100% - 36px), 430px);
    margin-inline: 0;
  }

  .domain-section,
  .domain-direction,
  .domain-status-band,
  .domain-waitlist-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 24px;
  }

  .domain-card-grid,
  .domain-steps,
  .domain-faq-list {
    grid-template-columns: 1fr;
  }

  .domain-card-grid article,
  .domain-steps article,
  .domain-faq-list article {
    min-height: 0;
  }

  .domain-waitlist-form {
    max-width: none;
  }

  .commerce-section {
    padding: 58px 24px;
  }

  .commerce-featured-piece {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 58px 24px;
  }

  .commerce-product-depth {
    grid-template-columns: 1fr;
    padding: 58px 24px;
  }

  .commerce-social-reel {
    padding: 58px 24px;
  }

  .commerce-social-reel-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-social-reel-track figure,
  .commerce-social-reel-track a,
  .commerce-social-reel-track figure:nth-child(even),
  .commerce-social-reel-track a:nth-child(even) {
    min-height: 420px;
    margin-bottom: 0;
  }

  .commerce-pdp-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 58px 24px;
  }

  .commerce-pdp-copy h1 {
    max-width: 12ch;
  }

  .commerce-pdp-gallery {
    min-height: 520px;
  }

  .commerce-pdp-passport {
    padding: 58px 24px;
  }

  .commerce-pdp-passport-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-pdp-passport-media {
    min-height: 480px;
  }

  .commerce-pdp-visual-band,
  .commerce-pdp-fit-studio,
  .commerce-pdp-proof-band {
    grid-template-columns: 1fr;
    padding: 58px 24px;
  }

  .commerce-pdp-fit-studio-head {
    min-height: 0;
  }

  .commerce-pdp-fit-studio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-pdp-fit-studio-card {
    min-height: 340px;
  }

  .commerce-pdp-proof-band {
    gap: 14px;
  }

  .commerce-pdp-proof-band figure {
    min-height: 340px;
  }

  .commerce-pdp-proof-band > div {
    min-height: 0;
  }

  .commerce-pdp-mood-section {
    padding: 58px 24px;
  }

  .commerce-pdp-mood-copy {
    grid-template-columns: 1fr;
  }

  .commerce-pdp-mood-copy h2 {
    font-size: 3.2rem;
  }

  .commerce-pdp-mood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-pdp-mood-grid figure,
  .commerce-pdp-mood-grid figure:first-child {
    min-height: 400px;
  }

  .commerce-pdp-support-section {
    padding: 58px 24px;
  }

  .commerce-product-depth-copy {
    position: static;
    top: auto;
  }

  .commerce-featured-media {
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .commerce-featured-copy h2 {
    font-size: 3.2rem;
  }

  .commerce-featured-specs,
  .commerce-product-depth-grid,
  .commerce-pdp-fact-grid,
  .commerce-gateway-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-continue-shelf {
    grid-template-columns: 1fr;
  }

  .commerce-continue-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-policy-confidence {
    grid-template-columns: 1fr;
  }

  .commerce-policy-visual {
    height: 320px;
    min-height: 0;
  }

  .commerce-lookbook-header {
    grid-template-columns: 1fr;
  }

  .commerce-lookbook-header h2 {
    max-width: none;
  }

  .commerce-lookbook-grid,
  .commerce-lookbook-band:not(.is-group) .commerce-lookbook-grid,
  .commerce-lookbook-band.is-group .commerce-lookbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-group-visual-gateway {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-group-confidence {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-group-confidence figure {
    min-height: 420px;
  }

  .commerce-group-confidence-copy h2 {
    max-width: none;
  }

  .commerce-group-visual-copy h2 {
    max-width: 12ch;
  }

  .commerce-group-gateway-look {
    min-height: 420px;
  }

  .commerce-brand-compass {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-brand-compass-card {
    grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .commerce-brand-compass-card figure {
    grid-row: 1 / 3;
    min-height: 420px;
  }

  .commerce-brand-compass-strip {
    min-height: 150px;
  }

  .commerce-policy-header strong {
    max-width: none;
  }

  .commerce-product-depth-grid .commerce-visual-story-card {
    min-height: 380px;
  }

  .commerce-product-depth-grid .commerce-visual-story-card:nth-child(even) {
    margin-top: 0;
  }

  .commerce-hero > .commerce-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  body:not(.brand-domain-page) .commerce-store-hero > .commerce-hero-inner {
    grid-template-columns: 1fr;
    width: min(1180px, 100%);
  }

  .commerce-hero-product-stage,
  .commerce-hero-brand-stage {
    max-width: none;
    justify-self: stretch;
  }

  body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-stage {
    max-width: none;
  }

  body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-card {
    min-height: 390px;
    padding: 22px;
  }

  body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-collage {
    width: min(34%, 126px);
  }

  body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-card strong {
    font-size: 2rem;
  }

  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero {
    padding-top: 12px;
    padding-bottom: 18px;
  }

  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card {
    min-height: clamp(360px, 94vw, 440px);
  }

  .commerce-hero-preview-card {
    min-height: 440px;
  }

  .commerce-hero-buy-card.commerce-product-card {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
  }

  .commerce-hero-buy-media {
    min-height: 100%;
  }

  .commerce-hero-deck {
    align-self: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-hero-card {
    min-height: 150px;
  }

  .commerce-shell,
  .commerce-tide-list,
  .commerce-product-grid,
  .commerce-gateway-grid {
    grid-template-columns: 1fr;
  }

  .commerce-account-access-preview {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .commerce-account-access-preview figure {
    min-height: 300px;
    max-height: 460px;
  }

  .commerce-account-access-preview img {
    min-height: 300px;
  }

  .commerce-account-access-copy h2 {
    max-width: 12ch;
    font-size: 2.1rem;
  }

  .commerce-shop-stat-grid {
    grid-template-columns: 1fr;
  }

  .commerce-shop-board {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .commerce-shop-fast-path {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-shop-board figure {
    min-height: 248px;
    max-height: 390px;
  }

  .commerce-shop-board-copy h2 {
    max-width: none;
    font-size: 1.55rem;
  }

  .commerce-shop-board-signals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-shop-next-access {
    grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
  }

  .commerce-shop-next-visual {
    min-height: 116px;
  }

  .commerce-shop-next-visual img {
    min-height: 116px;
  }

  .commerce-shop-next-copy > strong {
    font-size: 1rem;
  }

  .commerce-shop-next-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-shop-next-access a {
    width: auto;
  }

  .commerce-merchandising-row {
    grid-template-columns: 1fr;
  }

  .commerce-set-builder {
    min-height: 0;
  }

  .commerce-set-builder-visual,
  .commerce-set-builder-visual img {
    min-height: 300px;
  }

  .commerce-saved-shelf {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .commerce-account {
    position: static;
    top: auto;
  }

  .commerce-product-card.is-initiation {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .commerce-product-card.is-initiation .commerce-product-visual {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .commerce-gateway-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .domain-wordmark {
    font-size: 1.02rem;
  }

  .domain-nav a,
  .domain-header-action,
  .domain-button,
  .domain-stage {
    font-size: 0.72rem;
  }

  .domain-nav {
    max-width: 340px;
    gap: 12px 14px;
  }

  .domain-header-action,
  .domain-button {
    width: min(100%, 270px);
  }

  .brand-domain-page.commerce-shop-page .domain-header-action,
  .brand-domain-page.commerce-product-detail-page .domain-header-action {
    width: auto;
  }

  .domain-hero {
    min-height: 640px;
    padding-top: 38px;
  }

  .domain-hero h1 {
    font-size: 3.35rem;
  }

  .angel-domain-hero .angel-logo-heading {
    font-size: clamp(2.7rem, 12.4vw, 3.15rem);
  }

  .siren-logo-heading + .domain-kicker {
    margin-top: 42px;
  }

  .angel-logo-heading + .domain-kicker {
    margin-top: 44px;
  }

  .domain-symbol {
    margin-top: 24px;
    margin-bottom: 22px;
  }

  .domain-kicker {
    font-size: 0.98rem;
  }

  .domain-copy {
    font-size: 0.95rem;
  }

  .domain-state {
    font-size: 1.36rem;
  }

  .domain-footer {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .domain-footer-brand {
    font-size: 1.5rem;
  }

  .domain-section,
  .domain-status-band,
  .domain-waitlist-section {
    padding: 46px 18px;
  }

  .domain-section-copy h2,
  .domain-status-band h2,
  .domain-waitlist-copy h2 {
    font-size: 1.72rem;
  }

  .domain-note,
  .domain-visual figcaption,
  .domain-card-grid article,
  .domain-steps article,
  .domain-faq-list article {
    padding: 24px;
  }

  .domain-waitlist-form > input[type="email"] {
    border-right: 1px solid rgba(26, 26, 26, 0.18);
    border-bottom: 0;
  }

  .siren-domain-page .domain-waitlist-form > input[type="email"] {
    border-right-color: rgba(247, 244, 239, 0.24);
  }

  .commerce-section {
    padding: 46px 18px;
  }

  .commerce-pdp-fit-studio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: hidden;
    padding: 34px 18px;
  }

  .commerce-pdp-fit-studio-head {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-fit-studio-head .eyebrow,
  .commerce-pdp-fit-studio-head h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-fit-studio-grid {
    display: flex;
    gap: 8px;
    margin-inline: -18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .commerce-pdp-fit-studio-grid::-webkit-scrollbar {
    display: none;
  }

  .commerce-pdp-fit-studio-card {
    flex: 0 0 min(78vw, 300px);
    min-height: 254px;
    max-height: 308px;
    scroll-snap-align: start;
  }

  .commerce-pdp-fit-studio-card figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 5px;
    padding: 8px;
  }

  .commerce-pdp-fit-studio-card strong {
    font-size: 1.02rem;
  }

  .commerce-pdp-fit-meter {
    width: 76px;
  }

  .commerce-shop-fast-path {
    padding: 14px;
  }

  .commerce-shop-fast-copy h2 {
    max-width: none;
    font-size: 1.5rem;
  }

  .commerce-shop-fast-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .commerce-shop-fast-steps span {
    min-height: 88px;
    padding: 9px;
  }

  .commerce-shop-fast-steps strong {
    font-size: 0.7rem;
  }

  .commerce-focused-worn-dock {
    margin-inline: 0;
    padding: 8px;
  }

  .commerce-focused-worn-grid {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scroll-padding-inline: 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .commerce-focused-worn-grid::-webkit-scrollbar {
    display: none;
  }

  .commerce-focused-worn-card {
    flex: 0 0 min(38vw, 138px);
    min-height: 116px;
    padding: 8px;
    scroll-snap-align: start;
  }

  .commerce-focused-worn-card > span {
    width: 30px;
    height: 30px;
  }

  .commerce-focused-worn-card .commerce-icon {
    width: 12px;
    height: 12px;
  }

  .brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }

  .brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card {
    flex: initial;
    min-height: 104px;
    padding: 8px;
  }

  .brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card span {
    gap: 4px;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    padding: 0;
    font-size: 0;
    line-height: 1;
  }

  .brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card .commerce-icon {
    width: 12px;
    height: 12px;
  }

  .brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card strong,
  .brand-domain-page.commerce-shop-page .commerce-shop-path.is-focused-shop-path .commerce-shop-path-card small {
    display: none;
  }

  body:not(.brand-domain-page) .commerce-gateway-section {
    padding-top: 24px;
  }

  body:not(.brand-domain-page) .commerce-gateway-section .commerce-shell {
    order: 1;
  }

  body:not(.brand-domain-page) .commerce-gateway-section > .domain-section-copy {
    order: 2;
  }

  body:not(.brand-domain-page) .commerce-gateway-showcase .commerce-gateway-grid {
    order: 1;
  }

  body:not(.brand-domain-page) .commerce-gateway-showcase .commerce-shop-tools-copy {
    order: 2;
  }

  body:not(.brand-domain-page) .commerce-gateway-showcase .commerce-gateway-trust {
    order: 3;
  }

  .commerce-store-hero {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .commerce-shop-page .commerce-store-hero,
  body:not(.brand-domain-page) .commerce-store-hero {
    min-height: 0;
    align-items: start;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .brand-domain-page.commerce-shop-page .commerce-store-hero {
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .brand-domain-page.commerce-shop-page .domain-main {
    min-height: 0;
  }

  .brand-domain-page.commerce-shop-page #commerce-catalog.commerce-section {
    margin-top: 0;
    padding-top: 24px;
  }

  .commerce-shop-page .commerce-store-hero .commerce-hero-copy,
  body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-copy {
    gap: 10px;
  }

  .brand-domain-page.commerce-shop-page .commerce-store-hero .commerce-hero-copy {
    gap: 4px;
  }

  .brand-domain-page.commerce-shop-page .commerce-store-hero .eyebrow {
    font-size: 0.66rem;
  }

  .commerce-shop-page .commerce-store-hero h1,
  body:not(.brand-domain-page) .commerce-store-hero h1 {
    margin-top: 4px;
    font-size: clamp(2rem, 8.6vw, 2.24rem);
    line-height: 0.98;
  }

  .brand-domain-page.commerce-shop-page .commerce-store-hero h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .brand-domain-page.commerce-shop-page #commerce-catalog.commerce-section {
    padding-top: 10px;
    padding-bottom: 24px;
  }

  .commerce-group-visual-gateway {
    gap: 14px;
    padding: 14px;
  }

  .commerce-group-visual-duo {
    order: -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-group-gateway-look {
    min-height: 390px;
  }

  .commerce-group-gateway-look span {
    inset: auto 10px 10px;
  }

  .commerce-group-gateway-look strong {
    max-width: none;
    font-size: clamp(1.16rem, 5vw, 1.45rem);
  }

  .commerce-group-gateway-look small {
    max-width: none;
    font-size: 0.72rem;
  }

  .commerce-group-visual-copy h2 {
    max-width: none;
    font-size: 1.78rem;
    line-height: 0.98;
  }

  .commerce-group-visual-copy p {
    font-size: 0.84rem;
  }

  .commerce-group-confidence {
    gap: 14px;
    padding: 14px;
  }

  .commerce-group-confidence figure {
    min-height: 320px;
  }

  .commerce-group-confidence-copy h2 {
    max-width: none;
    font-size: 1.78rem;
    line-height: 0.98;
  }

  .commerce-group-confidence-copy p {
    font-size: 0.84rem;
  }

  .commerce-group-confidence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-group-confidence-grid span {
    min-height: 108px;
    padding: 9px;
  }

  .commerce-store-hero .commerce-hero-copy {
    gap: 14px;
  }

  .commerce-hero-signal-strip {
    gap: 6px;
  }

  .commerce-store-hero .commerce-hero-signal-strip {
    display: flex;
    width: calc(100% + 24px);
    margin-inline: -12px;
    padding: 2px 12px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .commerce-store-hero .commerce-hero-signal-strip {
    display: none;
  }

  .commerce-store-hero .commerce-hero-signal-strip::-webkit-scrollbar {
    display: none;
  }

  .commerce-store-hero .commerce-hero-signal {
    flex: 0 0 clamp(86px, 27vw, 106px);
    min-height: 104px;
    aspect-ratio: 0.82;
    padding: 0;
    scroll-snap-align: start;
  }

  .brand-domain-page.commerce-shop-page .commerce-store-hero .commerce-hero-signal {
    min-height: 104px;
  }

  body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-actions {
    display: none;
  }

  .commerce-store-hero .commerce-hero-signal::before {
    background: linear-gradient(180deg, transparent 46%, rgba(7, 16, 20, 0.36));
  }

  .commerce-store-hero .commerce-hero-signal::after {
    background:
      radial-gradient(circle at 17px calc(100% - 17px), rgba(255, 253, 248, 0.96) 0 3px, transparent 4px),
      radial-gradient(circle at 17px calc(100% - 17px), rgba(7, 16, 20, 0.38) 0 12px, transparent 13px);
    box-shadow: inset 0 0 28px rgba(255, 253, 248, 0.08);
  }

  .angel-domain-page .commerce-store-hero .commerce-hero-signal::before {
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.18));
  }

  .commerce-hero-signal:not(.commerce-store-hero .commerce-hero-signal) {
    min-height: 116px;
    padding: 8px;
  }

  .commerce-store-hero .commerce-hero-signal span,
  .commerce-store-hero .commerce-hero-signal strong {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-hero-signal:not(.commerce-store-hero .commerce-hero-signal) span {
    padding: 5px 7px;
    font-size: 0.58rem;
  }

  .commerce-hero-signal:not(.commerce-store-hero .commerce-hero-signal) strong {
    font-size: clamp(0.96rem, 4.2vw, 1.14rem);
  }

  .commerce-hero-preview-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    min-height: 0;
    padding: 9px;
  }

  .commerce-hero-preview-main {
    min-height: clamp(330px, 92vw, 480px);
  }

  .commerce-hero-preview-side {
    grid-template-rows: 150px auto auto;
    gap: 8px;
  }

  .commerce-hero-preview-main figcaption,
  .commerce-hero-preview-tile figcaption {
    padding: 13px;
  }

  .commerce-hero-preview-main figcaption strong {
    max-width: 8ch;
    font-size: clamp(1.95rem, 10vw, 2.75rem);
  }

  .commerce-hero-preview-main figcaption small {
    padding: 6px 9px;
    font-size: 0.62rem;
  }

  .commerce-hero-preview-detail {
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .commerce-hero-preview-detail img,
  .commerce-hero-preview-detail::after {
    display: none;
  }

  .commerce-hero-preview-chips {
    gap: 5px;
  }

  .commerce-hero-preview-chips span {
    min-height: 72px;
    padding: 8px 7px;
  }

  .commerce-hero-preview-chips strong {
    font-size: 0.66rem;
  }

  .commerce-hero-preview-actions {
    gap: 5px;
  }

  .commerce-hero-preview-actions button {
    min-height: 38px;
    padding: 7px 6px;
    font-size: 0.54rem;
  }

  .commerce-store-hero .commerce-hero-deck {
    display: none;
  }

  .commerce-mobile-buy-bar-shell.is-visible:not(:empty) {
    display: block;
  }

  .commerce-pdp-gallery,
  .commerce-pdp-passport-media,
  .commerce-pdp-mood-grid,
  .commerce-lookbook-grid,
  .commerce-social-reel-track,
  .commerce-brand-compass {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .commerce-pdp-gallery::-webkit-scrollbar,
  .commerce-pdp-passport-media::-webkit-scrollbar,
  .commerce-pdp-mood-grid::-webkit-scrollbar,
  .commerce-lookbook-grid::-webkit-scrollbar,
  .commerce-social-reel-track::-webkit-scrollbar,
  .commerce-brand-compass::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .commerce-mobile-buy-bar {
    grid-template-columns: 54px minmax(0, 1fr) minmax(104px, auto);
  }

  .commerce-mobile-buy-visual {
    width: 54px;
    height: 58px;
  }

  .commerce-mobile-buy-visual span,
  .commerce-mobile-buy-copy > span,
  .commerce-mobile-buy-copy > strong {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-mobile-buy-progress {
    display: flex;
    grid-row: 1 / 3;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
  }

  .commerce-mobile-buy-bar p {
    display: none;
  }

  .commerce-mobile-buy-progress span {
    display: inline-grid;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    place-items: center;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    font-size: 0;
    letter-spacing: 0;
    line-height: 0;
  }

  .commerce-mobile-buy-progress .commerce-icon {
    width: 12px;
    height: 12px;
  }

  .commerce-mobile-buy-bar button[data-buy-bar-primary] {
    grid-column: 3 / 4;
  }

  .commerce-mobile-buy-bar button[data-open-cart-drawer] {
    display: none;
  }

  .commerce-floating-cart-shell {
    right: 14px;
    bottom: calc(94px + env(safe-area-inset-bottom));
  }

  .commerce-floating-cart-button {
    width: 48px;
    height: 48px;
  }

  .commerce-floating-cart-button .commerce-icon {
    width: 18px;
    height: 18px;
  }

  .commerce-floating-cart-button strong {
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    font-size: 0.62rem;
  }

  .commerce-section:last-of-type {
    padding-bottom: 116px;
  }

  .commerce-hero-brand-stage,
  .commerce-hero-buy-card.commerce-product-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-hero-buy-media {
    min-height: 260px;
  }

  .commerce-hero-buy-body {
    padding: 20px;
  }

  .commerce-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .commerce-hero-actions .button,
  .commerce-hero-actions .domain-button,
  .commerce-featured-actions .domain-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body:not(.brand-domain-page) .commerce-store-hero .commerce-hero-brand-collage {
    top: 10px;
    right: 10px;
    width: min(32%, 108px);
  }

  .commerce-hero-brand-collage img {
    border-radius: 6px;
  }

  .commerce-featured-piece {
    gap: 24px;
    padding: 42px 18px;
  }

  .commerce-featured-media {
    min-height: 0;
    aspect-ratio: auto;
  }

  .commerce-featured-media img {
    height: auto;
    min-height: 0;
  }

  .commerce-featured-copy h2 {
    font-size: 2.35rem;
  }

  .commerce-product-depth {
    padding: 42px 18px;
  }

  .commerce-social-reel {
    gap: 18px;
    padding: 42px 18px;
  }

  .commerce-social-reel-head h2 {
    font-size: 2.45rem;
  }

  .commerce-social-reel-track {
    display: flex;
    gap: 10px;
    margin-inline: -18px;
    overflow-x: auto;
    padding: 0 18px 10px;
    scroll-snap-type: x proximity;
  }

  .commerce-social-reel-track figure,
  .commerce-social-reel-track a,
  .commerce-social-reel-track figure:nth-child(even),
  .commerce-social-reel-track a:nth-child(even) {
    flex: 0 0 min(286px, 78vw);
    min-height: 420px;
    margin-bottom: 0;
    scroll-snap-align: start;
  }

  .commerce-brand-compass {
    display: flex;
    gap: 10px;
    margin-inline: -2px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x proximity;
  }

  .commerce-brand-compass-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 318px auto auto;
    flex: 0 0 min(312px, 86vw);
    scroll-snap-align: start;
  }

  .commerce-brand-compass-card figure {
    grid-row: auto;
    min-height: 318px;
  }

  .commerce-gateway-showcase.is-compact .commerce-brand-compass {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-inline: 0;
    overflow: visible;
    padding: 0;
  }

  .commerce-gateway-showcase.is-compact .commerce-brand-compass-card {
    flex: none;
    grid-template-rows: 288px auto;
  }

  .commerce-gateway-showcase.is-compact .commerce-brand-compass-card figure {
    min-height: 288px;
  }

  .commerce-gateway-showcase.is-compact .commerce-brand-compass-strip {
    display: none;
  }

  .commerce-brand-compass-copy {
    padding: 16px;
  }

  .commerce-brand-compass-copy strong {
    font-size: 1.8rem;
  }

  .commerce-brand-compass-strip {
    min-height: 104px;
  }

  .commerce-brand-compass-strip img {
    min-height: 104px;
  }

  .commerce-pdp-hero {
    gap: 22px;
    padding: 42px 18px;
  }

  .commerce-product-detail-page .commerce-pdp-hero {
    gap: 14px;
    padding-top: 12px;
  }

  .commerce-pdp-copy h1 {
    font-size: 3.35rem;
  }

  .commerce-product-detail-page .commerce-pdp-copy {
    order: 2;
    gap: 0;
    min-height: 0;
  }

  .commerce-product-detail-page .commerce-pdp-copy > .eyebrow,
  .commerce-product-detail-page .commerce-pdp-copy > h1,
  .commerce-product-detail-page .commerce-pdp-actions,
  .commerce-product-detail-page .commerce-pdp-actions a {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .commerce-pdp-actions .domain-button,
  .commerce-pdp-actions .domain-text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .commerce-pdp-gallery {
    display: flex;
    gap: 10px;
    margin-inline: -18px;
    overflow-x: auto;
    padding: 0 18px 10px;
    min-height: 0;
    scroll-snap-type: x proximity;
  }

  .commerce-product-detail-page .commerce-pdp-gallery {
    order: 1;
    margin-top: 0;
  }

  .commerce-product-detail-page .commerce-pdp-buy-stage {
    order: 3;
  }

  .commerce-pdp-gallery figure,
  .commerce-pdp-gallery figure:not(.commerce-pdp-shot-main) {
    flex: 0 0 min(280px, 76vw);
    height: 430px;
    min-height: 430px;
    scroll-snap-align: start;
  }

  .commerce-pdp-gallery .commerce-pdp-shot-main {
    flex-basis: min(320px, 86vw);
    height: 500px;
    min-height: 500px;
  }

  .commerce-pdp-gallery img {
    height: 100%;
  }

  .commerce-pdp-passport {
    padding: 42px 18px;
  }

  .commerce-product-detail-page .commerce-pdp-passport {
    padding: 24px 18px;
  }

  .commerce-pdp-passport-card {
    padding: 12px;
  }

  .commerce-product-detail-page .commerce-pdp-passport-card {
    display: block;
    padding: 8px;
  }

  .commerce-pdp-passport-media {
    display: flex;
    gap: 8px;
    min-height: 0;
    margin-inline: -2px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-pdp-passport-primary,
  .commerce-pdp-passport-tile {
    flex: 0 0 min(274px, 82vw);
    min-height: 334px;
    scroll-snap-align: start;
  }

  .commerce-pdp-passport-tile {
    flex-basis: min(210px, 64vw);
  }

  .commerce-product-detail-page .commerce-pdp-passport-primary,
  .commerce-product-detail-page .commerce-pdp-passport-tile {
    min-height: 238px;
  }

  .commerce-product-detail-page .commerce-pdp-passport-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .commerce-product-detail-page .commerce-pdp-passport-primary {
    display: none;
  }

  .commerce-product-detail-page .commerce-pdp-passport-tile {
    flex: initial;
    min-height: 188px;
  }

  .commerce-product-detail-page .commerce-pdp-passport-tile::after {
    background:
      linear-gradient(180deg, transparent 58%, rgba(7, 16, 20, 0.28)),
      linear-gradient(90deg, rgba(7, 16, 20, 0.08), transparent 70%);
  }

  .commerce-pdp-passport-primary figcaption {
    padding: 18px;
  }

  .commerce-pdp-passport-panel {
    padding: 8px 2px 2px;
  }

  .commerce-product-detail-page .commerce-pdp-passport-panel {
    display: none;
  }

  .commerce-product-detail-page .commerce-pdp-passport-primary figcaption,
  .commerce-product-detail-page .commerce-pdp-passport-tile span,
  .commerce-product-detail-page .commerce-pdp-passport-tile strong {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-passport-panel h2 {
    max-width: 10ch;
    font-size: 2.2rem;
  }

  .commerce-pdp-passport-actions {
    align-items: stretch;
  }

  .commerce-pdp-passport-actions a,
  .commerce-pdp-passport-actions button {
    flex: 1 1 138px;
    min-width: 0;
  }

  .commerce-pdp-buy-stage .commerce-hero-buy-media {
    min-height: 238px;
  }

  .commerce-pdp-visual-band,
  .commerce-pdp-proof-band,
  .commerce-pdp-mood-section,
  .commerce-pdp-support-section {
    padding: 42px 18px;
  }

  .commerce-pdp-mood-section {
    gap: 18px;
    padding-bottom: 28px;
  }

  .commerce-pdp-band-copy h2,
  .commerce-pdp-mood-copy h2,
  .commerce-pdp-proof-band h2 {
    font-size: 2.35rem;
  }

  .commerce-pdp-proof-band {
    position: relative;
    gap: 0;
    padding: 34px 18px;
  }

  .commerce-pdp-proof-band figure {
    height: 224px;
    min-height: 224px;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .commerce-pdp-proof-band img {
    height: 100%;
    min-height: 224px;
    aspect-ratio: 16 / 10;
  }

  .commerce-pdp-proof-band > div {
    position: absolute;
    right: 30px;
    bottom: 46px;
    z-index: 2;
    display: flex;
    width: auto;
    min-height: 0;
    align-items: center;
    gap: 8px;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .commerce-pdp-proof-band > div::before {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    background:
      linear-gradient(135deg, transparent 47%, currentColor 48% 52%, transparent 53%),
      radial-gradient(circle at 50% 50%, rgba(200, 169, 102, 0.42) 0 4px, transparent 5px),
      rgba(255, 253, 248, 0.78);
    box-shadow:
      inset 0 0 0 7px rgba(255, 253, 248, 0.72),
      0 14px 34px rgba(10, 16, 18, 0.2);
    backdrop-filter: blur(14px);
  }

  .siren-domain-page .commerce-pdp-proof-band > div::before {
    background:
      linear-gradient(135deg, transparent 47%, currentColor 48% 52%, transparent 53%),
      radial-gradient(circle at 50% 50%, rgba(200, 169, 102, 0.58) 0 4px, transparent 5px),
      rgba(5, 12, 15, 0.64);
    box-shadow:
      inset 0 0 0 7px rgba(5, 12, 15, 0.62),
      0 14px 34px rgba(5, 12, 15, 0.38);
  }

  .commerce-pdp-proof-band .eyebrow,
  .commerce-pdp-proof-band h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-proof-band .domain-text-link {
    justify-content: center;
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    background: rgba(255, 253, 248, 0.82);
    box-shadow: 0 14px 34px rgba(10, 16, 18, 0.18);
    backdrop-filter: blur(14px);
  }

  .siren-domain-page .commerce-pdp-proof-band .domain-text-link {
    background: rgba(5, 12, 15, 0.62);
  }

  .commerce-pdp-mood-copy {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 38px;
  }

  .commerce-pdp-mood-copy > .eyebrow,
  .commerce-pdp-mood-copy > h2,
  .commerce-pdp-mood-copy > p:not(.eyebrow) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-mood-cues {
    flex-wrap: nowrap;
    gap: 7px;
  }

  .commerce-pdp-mood-cues span {
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    font-size: 0;
  }

  .commerce-pdp-mood-cues span::before {
    width: 11px;
    height: 11px;
  }

  .commerce-pdp-mood-cues span[data-mood-cue="shore"]::before {
    width: 16px;
    height: 8px;
  }

  .commerce-product-depth-copy h2 {
    font-size: 2.45rem;
  }

  .commerce-featured-specs,
  .commerce-featured-panels,
  .commerce-product-depth-grid,
  .commerce-pdp-fact-grid,
  .commerce-fit-spec-grid,
  .commerce-fit-drawer-specs,
  .commerce-fit-guide-grid,
  .commerce-fit-selector-grid,
  .commerce-fit-selector-notes,
  .commerce-product-trust-grid,
  .commerce-gateway-trust {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-fit-selector {
    padding: 12px;
  }

  .commerce-fit-selector-head {
    align-items: flex-start;
  }

  .commerce-fit-selector-head > strong {
    max-width: 16ch;
    font-size: 1.02rem;
  }

  .commerce-fit-current {
    padding: 12px;
  }

  .commerce-fit-current-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-fit-current-choice-row {
    flex-wrap: nowrap;
    margin-inline: -2px;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scroll-snap-type: x proximity;
  }

  .commerce-fit-current-choice button {
    flex: 0 0 auto;
    min-width: 54px;
    scroll-snap-align: start;
  }

  .commerce-fit-current-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .commerce-fit-current-actions button {
    width: 100%;
  }

  .commerce-fit-size-chip-row {
    display: flex;
    gap: 7px;
    margin-inline: -2px;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scroll-snap-type: x proximity;
  }

  .commerce-fit-size-chip {
    flex: 0 0 62px;
    min-height: 48px;
    gap: 2px;
    padding: 6px;
    scroll-snap-align: start;
  }

  .commerce-fit-size-chip strong {
    font-size: 1rem;
  }

  .commerce-fit-size-chip span {
    font-size: 0.52rem;
    line-height: 1;
    white-space: nowrap;
  }

  .commerce-pdp-mood-grid {
    display: flex;
    gap: 10px;
    margin-inline: -18px;
    overflow-x: auto;
    padding: 0 18px 2px;
    scroll-snap-type: x proximity;
  }

  .commerce-pdp-mood-grid figure,
  .commerce-pdp-mood-grid figure:first-child {
    flex: 0 0 min(300px, 82vw);
    height: 360px;
    min-height: 360px;
    scroll-snap-align: start;
  }

  .commerce-pdp-mood-grid figure:first-child {
    flex-basis: min(320px, 86vw);
    height: 378px;
  }

  .commerce-continue-shelf {
    padding: 12px;
  }

  .commerce-continue-list {
    display: flex;
    gap: 10px;
    margin-inline: -2px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-continue-card {
    grid-template-columns: 78px minmax(0, 1fr);
    flex: 0 0 min(292px, 88vw);
    scroll-snap-align: start;
  }

  .commerce-continue-card img {
    width: 78px;
    min-height: 116px;
  }

  .commerce-policy-grid {
    display: flex;
    gap: 1px;
    margin-inline: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-policy-visual {
    height: 280px;
    min-height: 0;
  }

  .commerce-policy-card {
    flex: 0 0 min(254px, 82vw);
    min-height: 206px;
    scroll-snap-align: start;
  }

  .commerce-policy-card strong {
    font-size: 1.32rem;
  }

  .commerce-lookbook-band {
    gap: 10px;
    padding: 10px;
  }

  .commerce-lookbook-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    order: 2;
    padding: 0 2px 2px;
  }

  .commerce-lookbook-header > div {
    gap: 4px;
  }

  .commerce-lookbook-header h2 {
    max-width: none;
    font-size: 1.28rem;
    line-height: 1;
  }

  .commerce-lookbook-cues {
    display: none;
  }

  .commerce-lookbook-header button {
    min-height: 34px;
    padding-inline: 11px;
    font-size: 0.58rem;
  }

  .commerce-lookbook-header button[data-open-lookbook] {
    position: relative;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 999px;
  }

  .commerce-lookbook-header button[data-open-lookbook] .commerce-icon {
    width: 16px;
    height: 16px;
  }

  .commerce-lookbook-header button[data-open-lookbook] span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-lookbook-grid,
  .commerce-lookbook-band:not(.is-group) .commerce-lookbook-grid,
  .commerce-lookbook-band.is-group .commerce-lookbook-grid {
    display: flex;
    gap: 8px;
    margin-inline: -2px;
    order: 1;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-lookbook-card,
  .commerce-lookbook-band:not(.is-group) .commerce-lookbook-card,
  .commerce-lookbook-band.is-group .commerce-lookbook-card {
    --lookbook-card-height: 330px;
    flex: 0 0 min(258px, 78vw);
    min-height: 330px;
    scroll-snap-align: start;
  }

  .brand-domain-page.commerce-shop-page .commerce-lookbook-band:not(.is-group) {
    gap: 6px;
    padding: 8px;
  }

  .brand-domain-page.commerce-shop-page .commerce-lookbook-band:not(.is-group) .commerce-lookbook-grid {
    gap: 6px;
    padding-bottom: 4px;
  }

  .brand-domain-page.commerce-shop-page .commerce-lookbook-band:not(.is-group) .commerce-lookbook-card {
    --lookbook-card-height: 206px;
    flex-basis: min(152px, 44vw);
    min-height: 206px;
  }

  .brand-domain-page.commerce-shop-page .commerce-lookbook-band:not(.is-group) .commerce-lookbook-header {
    top: 16px;
    right: 16px;
  }

  .commerce-shop-path {
    display: flex;
    gap: 8px;
    margin-inline: -2px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-shop-path-card {
    flex: 0 0 min(224px, 72vw);
    min-height: 282px;
    scroll-snap-align: start;
  }

  .commerce-product-lineup {
    padding: 12px;
  }

  .commerce-product-lineup-head {
    display: grid;
    gap: 6px;
  }

  .commerce-product-lineup-head strong {
    text-align: left;
  }

  .commerce-product-lineup-track {
    display: flex;
    gap: 8px;
    margin-inline: -2px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-product-lineup-card {
    flex: 0 0 min(238px, 76vw);
    min-height: 324px;
    scroll-snap-align: start;
  }

  .commerce-style-board {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px;
  }

  .commerce-style-board-media {
    display: flex;
    gap: 8px;
    min-height: 0;
    margin-inline: -2px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-style-board-main,
  .commerce-style-board-tile {
    flex: 0 0 min(274px, 82vw);
    min-height: 334px;
    scroll-snap-align: start;
  }

  .commerce-style-board-tile {
    flex-basis: min(210px, 64vw);
  }

  .commerce-style-board-main figcaption {
    padding: 18px;
  }

  .commerce-style-board-panel {
    padding: 8px 2px 2px;
  }

  .commerce-style-board-panel h2 {
    max-width: 10ch;
    font-size: 2.2rem;
  }

  .commerce-style-board-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-style-board-facts article {
    min-height: 92px;
    padding: 13px;
  }

  .commerce-style-board-actions {
    align-items: stretch;
  }

  .commerce-style-board-actions button {
    flex: 1 1 138px;
    min-width: 0;
  }

  .commerce-shore-journey {
    padding: 12px;
  }

  .commerce-shore-journey-head {
    display: grid;
    gap: 6px;
    padding-inline: 2px;
  }

  .commerce-shore-journey-head strong {
    max-width: 11ch;
    text-align: left;
  }

  .commerce-shore-journey-grid {
    display: flex;
    gap: 8px;
    margin-inline: -2px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-shore-journey-card {
    flex: 0 0 min(252px, 78vw);
    min-height: 306px;
    scroll-snap-align: start;
  }

  .commerce-fit-finder {
    grid-template-columns: 1fr;
  }

  .commerce-fit-finder-copy {
    padding: 16px;
  }

  .commerce-fit-finder-grid {
    display: flex;
    gap: 1px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .commerce-fit-finder-card {
    flex: 0 0 min(238px, 74vw);
    min-height: 310px;
    scroll-snap-align: start;
  }

  .commerce-fit-finder.is-image-only .commerce-fit-finder-card {
    flex-basis: min(214px, 68vw);
    min-height: 248px;
  }

  .commerce-fit-atlas {
    grid-template-columns: minmax(0, 1fr);
    padding: 10px;
  }

  .commerce-fit-atlas-media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(100px, 0.46fr);
    gap: 8px;
    min-height: 0;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .commerce-fit-atlas-primary,
  .commerce-fit-atlas-secondary {
    min-height: 286px;
  }

  .commerce-fit-atlas-copy {
    padding: 2px;
  }

  .commerce-fit-atlas-copy h3 {
    max-width: 12ch;
    font-size: 2rem;
  }

  .commerce-fit-atlas-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-return-visual {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .commerce-return-visual figure {
    min-height: 246px;
    max-height: 390px;
  }

  .commerce-return-visual-copy {
    padding: 2px;
  }

  .commerce-return-visual-copy h2 {
    font-size: 1.38rem;
  }

  .commerce-return-visual-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-checkout-runway {
    padding: 10px;
  }

  .commerce-checkout-runway-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-checkout-runway-card {
    min-height: 74px;
  }

  .commerce-checkout-runway-card strong,
  .commerce-checkout-runway-card small {
    white-space: normal;
  }

  .commerce-checkout-handoff {
    grid-template-columns: minmax(0, 1fr);
    padding: 10px;
  }

  .commerce-checkout-handoff figure {
    min-height: 238px;
    max-height: 390px;
    aspect-ratio: 4 / 5;
  }

  .commerce-checkout-handoff img {
    min-height: 0;
  }

  .commerce-checkout-handoff-copy h3 {
    font-size: 1.28rem;
  }

  .commerce-checkout-handoff-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-cart-visual-summary {
    display: block;
    grid-template-columns: minmax(0, 1fr);
    min-height: 536px;
  }

  .commerce-cart-visual-summary figure,
  .commerce-cart-visual-summary figure img {
    height: 220px;
    min-height: 220px;
  }

  .commerce-cart-visual-summary figure {
    margin-bottom: 12px;
  }

  .commerce-cart-visual-copy h3 {
    font-size: 1.36rem;
  }

  .commerce-cart-visual-pills {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-cart-visual-pills span {
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    min-height: 48px;
  }

  .commerce-cart-visual-pills strong {
    text-align: right;
  }

  .commerce-cart-visual-detail {
    display: none;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary {
    min-height: 536px;
  }

  .commerce-lookbook-viewer-shell {
    padding: 10px;
  }

  .commerce-lookbook-viewer {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    aspect-ratio: 3 / 4;
  }

  .commerce-lookbook-viewer-top {
    padding: 10px;
  }

  .commerce-lookbook-viewer-top h2 {
    font-size: 1.5rem;
  }

  .commerce-lookbook-viewer img {
    height: 100%;
    min-height: 0;
  }

  .commerce-lookbook-viewer figcaption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 166px);
  }

  .commerce-lookbook-viewer-copy {
    right: 12px;
    bottom: 12px;
    padding: 0;
  }

  .commerce-lookbook-viewer-copy p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .commerce-lookbook-viewer-actions {
    display: flex;
    grid-template-columns: none;
  }

  .commerce-lookbook-viewer-actions a {
    grid-column: auto;
  }

  .commerce-product-depth-grid .commerce-visual-story-card {
    min-height: 360px;
  }

  .commerce-pdp-mood-grid figure,
  .commerce-pdp-mood-grid figure:first-child {
    min-height: 360px;
  }

  .commerce-product-trust-grid.commerce-visual-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-fit-path {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .commerce-fit-path-steps {
    grid-template-columns: repeat(3, minmax(58px, 1fr));
  }

  .commerce-fit-path-steps span {
    padding: 7px;
  }

  .commerce-fit-meter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-fit-meter-item {
    min-height: 104px;
  }

  .commerce-featured-specs div,
  .commerce-fit-spec-grid div {
    min-height: 0;
  }

  .commerce-product-depth-grid article,
  .commerce-fit-guide-grid article {
    min-height: 0;
  }

  .commerce-fit-drawer {
    width: 100%;
    padding: 18px;
  }

  .commerce-fit-actions,
  .commerce-fit-panel-actions,
  .commerce-product-depth-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .commerce-fit-actions button,
  .commerce-fit-actions a,
  .commerce-fit-panel-actions button,
  .commerce-fit-panel-actions a,
  .commerce-product-depth-actions .domain-button,
  .commerce-product-depth-actions .domain-text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .commerce-hero-deck {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-hero-card {
    min-height: 0;
    padding: 16px;
  }

  .commerce-shop-tools {
    padding: 20px;
  }

  .commerce-shop-tools-copy h2 {
    font-size: 1.55rem;
  }

  .commerce-account-access-preview {
    gap: 10px;
  }

  .commerce-account-access-preview figure,
  .commerce-account-access-preview img {
    min-height: 278px;
  }

  .commerce-account-access-preview figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .commerce-account-access-preview figcaption strong {
    font-size: 1.55rem;
  }

  .commerce-account-access-copy {
    gap: 10px;
    min-width: 0;
    overflow: hidden;
  }

  .commerce-account-access-copy h2 {
    font-size: 1.6rem;
  }

  .commerce-account-access-cues {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 6px;
    contain: layout paint;
    scroll-snap-type: x proximity;
  }

  .commerce-account-access-cues article {
    flex: 0 0 min(224px, 74vw);
    scroll-snap-align: start;
  }

  .commerce-account-access-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-account-access-actions a {
    min-width: 0;
    padding-inline: 10px;
    white-space: normal;
  }

  [data-commerce-page="account"] .brand-detail-hero .lede,
  [data-commerce-page="account"] > .commerce-section > .domain-section-copy h2,
  [data-commerce-page="account"] > .commerce-section > .domain-section-copy p:not(.eyebrow):not(.commerce-status),
  [data-commerce-page="account"] [data-account-access-preview] .commerce-account-access-copy > span,
  [data-commerce-page="account"] [data-account-access-preview] .commerce-account-access-copy h2,
  [data-commerce-page="account"] [data-account-access-preview] .commerce-account-access-cues small {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    display: none;
  }

  [data-commerce-page="account"] [data-account-access-preview] .commerce-account-access-cues article {
    align-content: center;
    flex-basis: min(176px, 58vw);
    min-height: 58px;
    padding: 10px;
  }

  [data-commerce-page="account"] [data-account-access-preview] .commerce-account-access-cues strong {
    font-size: 1.02rem;
  }

  .commerce-discovery-board {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-tide-rail {
    padding: 14px;
  }

  .commerce-tide-rail-track {
    grid-auto-columns: minmax(238px, 84%);
  }

  .commerce-tide-visual-card.commerce-tide-card {
    grid-template-rows: 150px 1fr;
  }

  .commerce-saved-shelf {
    padding: 14px;
  }

  .commerce-saved-shelf ol,
  .commerce-saved-shelf button,
  .commerce-saved-shelf a {
    width: 100%;
  }

  .commerce-watch-shelf {
    grid-template-columns: minmax(0, 1fr);
    padding: 14px;
  }

  .commerce-watch-list {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 6px;
    contain: layout paint;
    scroll-snap-type: x proximity;
  }

  .commerce-watch-card {
    flex: 0 0 min(300px, 82vw);
    scroll-snap-align: start;
  }

  .commerce-watch-actions button,
  .commerce-watch-actions a {
    min-width: 0;
  }

  .commerce-filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-filter-bar button {
    width: 100%;
    justify-content: space-between;
  }

  .commerce-tide-card,
  .commerce-auth-form,
  .commerce-account-card,
  .commerce-cart-card,
  .commerce-gateway-card {
    padding: 22px;
  }

  .commerce-gateway-card {
    padding: 0;
  }

  .commerce-gateway-card > :not(.commerce-gateway-visual) {
    margin-inline: 22px;
  }

  .commerce-product-card {
    min-height: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation:not(.is-shop-secondary) {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation:not(.is-shop-secondary) .commerce-product-visual {
    width: 100%;
    min-width: 0;
  }

  .commerce-product-body,
  .commerce-product-card.is-initiation .commerce-product-body {
    padding: 22px;
  }

  .commerce-size-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-product-visual,
  .commerce-product-card.is-initiation .commerce-product-visual {
    min-height: 238px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-visual {
    min-height: clamp(700px, 188vw, 760px);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-visual {
    min-height: clamp(230px, 62vw, 288px);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-visual img {
    object-position: center 38%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation:not(.is-shop-secondary) .commerce-product-visual img {
    object-fit: cover;
    object-position: center 50%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-visual img {
    object-position: center 48%;
  }

  .commerce-product-grid.is-focused-shop-grid [data-focused-product-visual] img[data-commerce-gallery-image] {
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  .commerce-save-button strong {
    display: none;
  }

  .commerce-visual-action-tray {
    right: 12px;
    bottom: 12px;
    max-width: min(216px, calc(100% - 24px));
  }

  .commerce-visual-action-tray button,
  .commerce-visual-action-tray a {
    min-width: 48px;
    min-height: 40px;
    padding: 7px 8px;
  }

  .commerce-visual-action-tray strong {
    font-size: 0.54rem;
  }

  .commerce-product-detail-cue {
    right: 10px;
    bottom: 10px;
    min-width: 118px;
    max-width: min(148px, calc(100% - 20px));
    min-height: 42px;
    gap: 1px 6px;
    padding: 7px 9px;
  }

  .commerce-product-detail-cue .commerce-icon {
    width: 14px;
    height: 14px;
  }

  .commerce-product-detail-cue span {
    font-size: 0.5rem;
  }

  .commerce-product-detail-cue strong {
    font-size: 0.62rem;
  }

  .commerce-product-visual:has(.commerce-product-detail-cue) figcaption {
    max-width: calc(100% - 150px);
  }

  .commerce-glance-rail {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .commerce-glance-rail button,
  .commerce-glance-rail a {
    flex: 0 0 min(128px, 42vw);
    min-height: 96px;
    scroll-snap-align: start;
  }

  .commerce-selected-look {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .commerce-selected-look img {
    width: 62px;
    height: 70px;
  }

  .commerce-selected-look em {
    grid-column: 2;
    justify-self: start;
    min-height: 30px;
  }

  .commerce-pdp-quick-buy-card .commerce-selected-look {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 38px;
    padding: 6px 8px;
  }

  .commerce-pdp-quick-buy-card .commerce-selected-look img,
  .commerce-pdp-quick-buy-card .commerce-selected-look span,
  .commerce-pdp-quick-buy-card .commerce-selected-look small {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-quick-buy-card .commerce-selected-look strong {
    align-self: center;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.08;
  }

  .commerce-pdp-quick-buy-card .commerce-selected-look em {
    grid-column: 2;
    align-self: center;
    justify-self: end;
    min-width: 34px;
    min-height: 26px;
  }

  .commerce-product-visual .commerce-image-badge {
    top: 58px;
  }

  .commerce-tide-card h2,
  .commerce-product-card h2,
  .commerce-gateway-card h2,
  .commerce-auth-form h2,
  .commerce-account-card h2 {
    font-size: 1.45rem;
  }

  .commerce-auth-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-shop-account-prompt {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-auth-visual figure {
    min-height: 244px;
    max-height: 360px;
  }

  .commerce-shop-account-prompt figure {
    min-height: 236px;
    max-height: 360px;
  }

  .commerce-auth-visual-copy h2 {
    max-width: none;
    font-size: 1.38rem;
  }

  .commerce-shop-account-prompt h2 {
    max-width: none;
    font-size: 1.38rem;
  }

  .commerce-product-meta,
  .commerce-cart-item,
  .commerce-auth-actions,
  .commerce-provider-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .commerce-hero-buy-card .commerce-product-meta button,
  .commerce-hero-buy-card .commerce-product-action {
    width: 100%;
    min-width: 0;
  }

  .commerce-cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .commerce-cart-item button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .commerce-checkout-fields,
  .commerce-checkout-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-checkout-field-group {
    padding: 10px;
  }

  .commerce-account-choice:not(.is-signed-in),
  .commerce-checkout-assurance {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-checkout-fields label:nth-child(5),
  .commerce-checkout-fields label:nth-child(6) {
    grid-column: auto;
  }

  .commerce-product-meta button,
  .commerce-product-action,
  .commerce-checkout-form button[type="submit"],
  .commerce-cart-open-button,
  .commerce-auth-actions button,
  .commerce-provider-actions button,
  .commerce-account-card > button {
    width: 100%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body {
    gap: 12px;
    padding: 16px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-body {
    gap: 10px;
    padding: 14px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-initiation .commerce-product-body::after {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel,
  .commerce-product-grid.is-focused-shop-grid .commerce-preview-access-panel.is-visual-only,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-alert-panel {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-copy {
    gap: 8px;
  }

  .commerce-focused-shore-track {
    display: flex;
    height: auto;
    gap: 6px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scroll-padding-inline: 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .commerce-focused-shore-track::-webkit-scrollbar {
    display: none;
  }

  .commerce-focused-shore-frame {
    flex: 0 0 min(34vw, 128px);
    height: 92px;
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .commerce-focused-shore-frame:first-child {
    flex-basis: min(43vw, 158px);
  }

  .commerce-focused-shore-frame span {
    right: 7px;
    bottom: 7px;
    width: 28px;
    height: 28px;
  }

  .commerce-focused-shore-frame .commerce-icon {
    width: 12px;
    height: 12px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-copy > .eyebrow,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-copy > h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop {
    top: 12px;
    right: auto;
    left: 12px;
    flex-wrap: nowrap;
    gap: 6px;
    max-width: calc(100% - 78px);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button {
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 4px;
    border-radius: 50%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button img {
    width: 34px;
    height: 34px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-detail-cue {
    right: 14px;
    bottom: 14px;
    grid-template-areas: "icon";
    grid-template-columns: 1fr;
    justify-items: center;
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-detail-cue .commerce-icon {
    width: 17px;
    height: 17px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-detail-cue span,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-detail-cue strong {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-visual:has(.commerce-product-detail-cue) figcaption {
    max-width: calc(100% - 86px);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip {
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip span {
    display: inline-flex;
    flex: 0 0 34px;
    width: 34px;
    min-height: 34px;
    gap: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    text-align: center;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip span:nth-child(2) {
    flex-grow: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip span:nth-child(3) {
    flex-grow: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip .commerce-icon {
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip em {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-fact-strip strong {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-swatch-label,
  .commerce-product-grid.is-focused-shop-grid .commerce-inventory-note {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-swatch-row {
    margin-top: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-swatch {
    width: 18px;
    height: 18px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-purchase-row {
    gap: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-size-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-size-control {
    gap: 6px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-size-control legend,
  .commerce-product-grid.is-focused-shop-grid .commerce-quantity-label {
    font-size: 0.58rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-size-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-option[data-sold-out="true"] {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-options {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-purchase-row.is-preview:not(.is-sold-out) .commerce-size-grid,
  .commerce-product-grid.is-focused-shop-grid .commerce-purchase-row.is-preview:not(.is-sold-out) .commerce-quantity-control {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-size-option {
    min-width: 0;
    min-height: 40px;
    padding: 7px 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-size-option span {
    font-size: 0.78rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-size-option small {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-size-note {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary {
    position: relative;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 8px;
    min-height: 42px;
    padding: 6px 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-icon {
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding: 7px;
    border: 1px solid rgba(124, 74, 56, 0.18);
    border-radius: 50%;
    background: rgba(124, 74, 56, 0.08);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary .commerce-icon {
    border-color: rgba(247, 244, 239, 0.18);
    background: rgba(247, 244, 239, 0.08);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary strong {
    min-width: 0;
    overflow: hidden;
    font-size: 0.66rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary::after {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 50%;
    font-size: 1.08rem;
    background: rgba(255, 253, 248, 0.58);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-fit-panel summary::after {
    border-color: rgba(247, 244, 239, 0.16);
    background: rgba(247, 244, 239, 0.08);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-quantity-control {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-self: stretch;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-quantity-stepper {
    grid-template-columns: 34px 46px 34px;
    min-height: 40px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-quantity-stepper button,
  .commerce-product-grid.is-focused-shop-grid .commerce-quantity-stepper input {
    min-height: 40px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-quantity-stepper input {
    width: 46px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-meta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    margin-top: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-meta > span {
    align-self: center;
    font-size: 0.72rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview .commerce-product-meta {
    display: flex;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-meta button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-action {
    min-height: 44px;
    padding-inline: 12px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-checkout-trust-rail {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 34px);
    justify-content: center;
    gap: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-checkout-trust-item {
    width: 34px;
    min-height: 34px;
    padding: 0;
    border-radius: 50%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-checkout-trust-item .commerce-icon {
    width: 14px;
    height: 14px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-checkout-trust-item span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-quick-buy-card .commerce-checkout-trust-rail {
    grid-template-columns: repeat(3, 38px);
    justify-content: start;
    width: auto;
    gap: 8px;
  }

  .commerce-pdp-quick-buy-card .commerce-checkout-trust-item {
    width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 999px;
  }

  .commerce-pdp-quick-buy-card .commerce-checkout-trust-item .commerce-icon {
    width: 14px;
    height: 14px;
  }

  .commerce-pdp-quick-buy-card .commerce-checkout-trust-item span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-shop-account-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-shop-account-actions a,
  .commerce-shop-account-actions button {
    width: 100%;
  }

  .commerce-pdp-account [data-product-account-prompt] {
    position: relative;
    isolation: isolate;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    padding: 8px;
  }

  .commerce-pdp-account [data-product-account-prompt] figure {
    min-height: 178px;
    max-height: 206px;
  }

  .commerce-pdp-account [data-product-account-prompt] figcaption {
    inset: auto auto 8px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 253, 248, 0.26);
    border-radius: 999px;
    background: rgba(7, 16, 20, 0.42);
    backdrop-filter: blur(12px);
  }

  .commerce-pdp-account [data-product-account-prompt] figcaption span {
    justify-content: center;
    gap: 0;
    font-size: 0;
  }

  .commerce-pdp-account [data-product-account-prompt] figcaption strong,
  .commerce-pdp-account [data-product-account-prompt] > div > span,
  .commerce-pdp-account [data-product-account-prompt] h2,
  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-pdp-account [data-product-account-prompt] > div {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 7px;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-auth-visual-chips {
    display: none;
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-auth-visual-chips span {
    justify-content: center;
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
    font-size: 0;
  }

  .commerce-pdp-account [data-product-account-prompt] figcaption .commerce-icon,
  .commerce-pdp-account [data-product-account-prompt] .commerce-auth-visual-chips .commerce-icon {
    width: 14px;
    height: 14px;
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions a,
  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions button {
    flex: 0 0 38px;
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border-color: rgba(247, 244, 239, 0.22);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.14), rgba(7, 16, 20, 0.52)),
      rgba(7, 16, 20, 0.5);
    color: var(--paper);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 360px) {
  .commerce-empty-bag-readiness {
    gap: 5px;
  }

  .commerce-empty-bag-readiness span {
    padding: 8px 7px;
  }

  .commerce-empty-bag-readiness strong {
    font-size: 0.66rem;
  }

  .commerce-policy-visual {
    height: 238px;
    min-height: 0;
  }

  .commerce-policy-visual figcaption {
    inset: auto 10px 10px;
  }

  .commerce-policy-visual figcaption strong {
    font-size: 1.48rem;
  }

  .commerce-group-confidence {
    padding: 10px;
  }

  .commerce-group-confidence figure {
    min-height: 278px;
  }

  .commerce-group-confidence-grid {
    gap: 5px;
  }

  .commerce-group-confidence-grid span {
    min-height: 98px;
    padding: 8px 7px;
  }

  .commerce-group-confidence-grid strong {
    font-size: 0.66rem;
  }

  .commerce-group-confidence-grid small {
    font-size: 0.68rem;
  }

  .commerce-group-visual-gateway {
    padding: 10px;
  }

  .commerce-group-visual-duo {
    gap: 8px;
  }

  .commerce-group-gateway-look {
    min-height: 352px;
  }

  .commerce-group-gateway-signals {
    gap: 5px;
  }

  .commerce-group-gateway-signals span {
    padding: 8px 7px;
  }

  .commerce-group-gateway-signals strong {
    font-size: 0.66rem;
  }

  .commerce-shop-board figure {
    min-height: 218px;
  }

  .commerce-shop-board-signals {
    gap: 5px;
  }

  .commerce-shop-board-signals span {
    padding: 8px 7px;
  }

  .commerce-shop-board-signals strong {
    font-size: 0.66rem;
  }

  .commerce-auth-visual figure {
    min-height: 218px;
  }

  .commerce-auth-visual-copy p {
    font-size: 0.72rem;
  }

  .commerce-auth-visual-chips,
  .commerce-auth-help-rail {
    gap: 5px;
  }

  .commerce-auth-visual-chips span,
  .commerce-auth-help-rail span,
  .commerce-auth-help-rail a {
    padding: 6px 7px;
    font-size: 0.54rem;
  }

  .commerce-pdp-account [data-product-account-prompt] {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-pdp-account [data-product-account-prompt] figure {
    min-height: 156px;
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-auth-visual-chips span {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }

  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions a,
  .commerce-pdp-account [data-product-account-prompt] .commerce-shop-account-actions button {
    flex-basis: 36px;
    width: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .commerce-return-visual {
    padding: 8px;
  }

  .commerce-return-visual figure {
    min-height: 218px;
  }

  .commerce-return-visual-chips {
    gap: 5px;
  }

  .commerce-return-visual-chips span {
    padding: 8px 7px;
  }

  .commerce-return-visual-chips strong {
    font-size: 0.66rem;
  }

  .commerce-fit-atlas {
    padding: 8px;
  }

  .commerce-fit-atlas-primary,
  .commerce-fit-atlas-secondary {
    min-height: 252px;
  }

  .commerce-fit-atlas-copy {
    gap: 9px;
  }

  .commerce-fit-atlas-copy h3 {
    font-size: 1.76rem;
  }

  .commerce-fit-atlas-chips {
    gap: 5px;
  }

  .commerce-fit-atlas-chips span {
    padding: 8px 7px;
  }

  .commerce-fit-atlas-chips strong {
    font-size: 0.68rem;
  }

  .commerce-fit-path {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 8px;
    padding: 7px;
  }

  .commerce-fit-path figure,
  .commerce-fit-path img {
    min-height: 98px;
  }

  .commerce-fit-path-copy {
    gap: 7px;
  }

  .commerce-fit-path-copy p {
    font-size: 0.72rem;
  }

  .commerce-fit-path-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .commerce-fit-path-steps span {
    min-height: 52px;
    padding: 6px 5px;
  }

  .commerce-fit-path-steps em {
    font-size: 0.5rem;
  }

  .commerce-fit-path-steps strong {
    font-size: 0.68rem;
  }

  .commerce-product-detail-cue {
    min-width: 102px;
    max-width: 126px;
  }

  .commerce-product-detail-cue span {
    display: none;
  }

  .commerce-product-detail-cue {
    grid-template-areas: "icon value";
    grid-template-columns: auto minmax(0, 1fr);
  }

  .commerce-product-visual:has(.commerce-product-detail-cue) figcaption {
    max-width: calc(100% - 126px);
  }

  .commerce-checkout-handoff {
    padding: 8px;
  }

  .commerce-checkout-handoff figure {
    min-height: 220px;
    max-height: 350px;
  }

  .commerce-checkout-handoff img {
    min-height: 0;
  }

  .commerce-checkout-handoff-copy h3 {
    font-size: 1.18rem;
  }

  .commerce-checkout-handoff-chips {
    gap: 5px;
  }

  .commerce-checkout-handoff-chips span {
    padding: 8px 7px;
  }

  .commerce-checkout-handoff-chips strong {
    font-size: 0.66rem;
  }

  .commerce-checkout-action-dock {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .commerce-checkout-action-dock img,
  .commerce-checkout-action-fallback {
    width: 52px;
    height: 60px;
  }

  .commerce-checkout-action-copy strong {
    font-size: 1.24rem;
  }

  .commerce-checkout-action-copy small {
    font-size: 0.64rem;
  }

  .commerce-mobile-buy-bar {
    grid-template-columns: 54px minmax(0, 1fr) minmax(104px, auto);
  }

  .commerce-mobile-buy-visual {
    width: 54px;
    height: 58px;
  }

  .commerce-mobile-buy-visual span,
  .commerce-mobile-buy-copy > span,
  .commerce-mobile-buy-copy > strong {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-mobile-buy-progress {
    display: flex;
    grid-row: 1 / 3;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
  }

  .commerce-mobile-buy-bar p {
    display: none;
  }

  .commerce-mobile-buy-progress span {
    display: inline-grid;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    place-items: center;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    font-size: 0;
    letter-spacing: 0;
    line-height: 0;
  }

  .commerce-mobile-buy-progress .commerce-icon {
    width: 12px;
    height: 12px;
  }

  .commerce-mobile-buy-bar button[data-buy-bar-primary] {
    grid-column: 3 / 4;
  }

  .commerce-mobile-buy-bar button[data-open-cart-drawer] {
    display: none;
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue {
  appearance: none;
  display: grid;
  width: 42px;
  min-height: 44px;
  place-items: center;
  align-self: stretch;
  gap: 2px;
  padding: 6px 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.74), rgba(216, 226, 223, 0.22)),
    rgba(255, 253, 248, 0.5);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.54);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue:hover,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue:focus-visible {
  border-color: rgba(124, 74, 56, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(216, 226, 223, 0.34)),
    rgba(255, 253, 248, 0.74);
  transform: translateY(-1px);
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue {
  border-color: rgba(247, 244, 239, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(214, 192, 142, 0.08)),
    rgba(255, 253, 248, 0.04);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(247, 244, 239, 0.1);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 169, 102, 0.18);
  color: var(--teal);
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue span {
  background: rgba(214, 192, 142, 0.16);
  color: var(--champagne);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue.is-fit-to-bag {
  align-content: center;
  gap: 8px;
  min-height: 100%;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue.is-fit-to-bag[data-bag-ready="true"] {
  border-color: rgba(163, 134, 67, 0.42);
  box-shadow:
    0 12px 28px rgba(163, 134, 67, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.62);
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue.is-fit-to-bag[data-bag-ready="true"] {
  border-color: rgba(214, 192, 142, 0.38);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(214, 192, 142, 0.1),
    inset 0 1px 0 rgba(247, 244, 239, 0.12);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-fit-to-bag-dots {
  display: grid;
  gap: 5px;
  place-items: center;
  font-style: normal;
}

.commerce-fit-to-bag-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  opacity: 0.48;
  transition: background 220ms ease, box-shadow 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.commerce-fit-to-bag-dots i[data-ready="true"] {
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(200, 169, 102, 0.12);
  opacity: 1;
  transform: scale(1.05);
}

.siren-domain-page .commerce-fit-to-bag-dots i[data-ready="true"] {
  box-shadow: 0 0 0 4px rgba(214, 192, 142, 0.14);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue strong {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue small {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row::after {
  display: none;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control {
  position: relative;
  min-height: 0;
  gap: 7px;
  padding-left: 34px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
  display: inline-grid;
  width: 28px;
  height: 28px;
  min-width: 28px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.64);
  color: var(--smoke);
  font-size: 0;
  line-height: 1;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend,
.siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
  border-color: rgba(247, 244, 239, 0.16);
  background: rgba(247, 244, 239, 0.06);
  color: rgba(247, 244, 239, 0.68);
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-label-icon,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-label-icon .commerce-icon,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label-icon .commerce-icon {
  width: 13px;
  height: 13px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-label-text,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label-text {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 10px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-control {
  display: grid;
  grid-template-columns: 28px auto;
  gap: 7px;
  align-items: center;
  justify-self: end;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper {
  grid-template-columns: 40px 52px 40px;
  min-height: 44px;
  border-radius: 10px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper button,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper input {
  min-height: 44px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper input {
  width: 52px;
}

@media (min-width: 861px) {
  .commerce-cart-drawer {
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    overflow: hidden;
  }

  .commerce-cart-drawer > [data-cart-panel] {
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 6px;
    scroll-padding-bottom: 34px;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar {
    width: 8px;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.06);
    border-radius: 999px;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-thumb {
    background: rgba(200, 169, 102, 0.52);
    border-radius: 999px;
  }

  .siren-domain-page .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-track {
    background: rgba(247, 244, 239, 0.08);
  }

  .siren-domain-page .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-thumb {
    background: rgba(214, 192, 142, 0.58);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta {
    margin-top: 6px;
    border-radius: 999px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-stock-lens {
    gap: 6px;
    padding: 8px;
    border-radius: 12px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-stock-lens-head {
    min-height: 0;
    padding: 0 2px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-stock-lens-head strong {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-stock-lens-grid {
    gap: 6px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-stock-lens-rail {
    min-height: 32px;
    padding: 4px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-stock-lens-sizes {
    gap: 3px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-purchase-row {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-set-picker-cue {
    width: 36px;
    min-height: 42px;
    border-radius: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-control {
    min-height: 42px;
    gap: 5px;
    padding-left: 30px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-control legend {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-options,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-option {
    min-height: 42px;
    padding: 7px 3px;
    border-radius: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-option span {
    font-size: 0.74rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-checkout-visual-plate {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-meta {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    margin-top: 0;
    padding: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-meta > span {
    min-height: 40px;
    padding-inline: 12px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-meta button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-action {
    min-height: 42px;
    padding-inline: 14px;
  }
}

@media (max-width: 860px) {
  .commerce-cart-drawer {
    width: 100%;
    padding: 12px 14px 18px;
  }

  .commerce-cart-drawer-top {
    display: flex;
    justify-content: flex-end;
    min-height: 38px;
    padding: 0 0 8px;
  }

  .commerce-cart-drawer-top > span,
  .commerce-cart-drawer-top h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-cart-drawer-top button {
    width: 38px;
    min-height: 38px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    font-size: 0;
  }

  .commerce-cart-drawer-top button .commerce-icon {
    width: 16px;
    height: 16px;
  }

  .commerce-cart-drawer-top button span {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-image-controls.is-focused-shop {
    visibility: hidden;
    pointer-events: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 9px;
    border-radius: 18px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue {
    grid-row: 1 / span 3;
    width: 34px;
    min-height: 0;
    border-radius: 14px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-grid {
    grid-column: 2 / -1;
    gap: 6px;
  }

  .commerce-stock-lens {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-stock-lens-head {
    display: inline-flex;
  }

  .commerce-stock-lens-grid {
    display: flex;
    grid-template-columns: none;
    gap: 5px;
  }

  .commerce-stock-lens-rail {
    min-height: 28px;
    padding: 4px 6px;
  }

  .commerce-stock-lens-rail > span,
  .commerce-stock-lens-rail > strong {
    width: 21px;
    min-width: 21px;
    height: 21px;
    font-size: 0.54rem;
  }

  .commerce-stock-lens-sizes em {
    width: 8px;
    min-width: 8px;
    height: 8px;
    font-size: 0;
  }

  .commerce-stock-lens-sizes {
    gap: 5px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-control {
    grid-column: 2;
    grid-template-columns: 26px auto;
    align-items: center;
    gap: 6px;
    justify-self: start;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control {
    min-height: 34px;
    padding-left: 30px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-label-icon .commerce-icon,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label-icon .commerce-icon {
    width: 12px;
    height: 12px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-options,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option {
    min-height: 34px;
    padding: 7px 4px;
    border-radius: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option span {
    font-size: 0.72rem;
    line-height: 1;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper {
    grid-template-columns: 32px 42px 32px;
    min-height: 38px;
    border-radius: 9px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper input {
    min-height: 38px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper input {
    width: 42px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look {
    grid-column: 3;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look img,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look span {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look strong {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-selected-look em {
    align-self: center;
    min-width: 38px;
    min-height: 38px;
    border-radius: 999px;
    font-size: 0.58rem;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary {
    min-height: 0;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary figure,
  .commerce-cart-drawer .commerce-cart-visual-summary figure img {
    height: 178px;
    min-height: 178px;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary figure {
    margin-bottom: 10px;
  }

  .commerce-cart-drawer .commerce-cart-visual-copy {
    gap: 7px;
  }

  .commerce-cart-drawer .commerce-cart-visual-copy h3 {
    font-size: 1.22rem;
  }

  .commerce-cart-drawer .commerce-cart-visual-copy p {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-cart-drawer .commerce-checkout-action-dock {
    position: static;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    bottom: auto;
    z-index: auto;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.1);
  }

  .commerce-cart-drawer .commerce-checkout-action-dock img,
  .commerce-cart-drawer .commerce-checkout-action-fallback {
    width: 44px;
    height: 50px;
    border-radius: 6px;
  }

  .commerce-cart-drawer .commerce-checkout-action-copy {
    gap: 2px;
  }

  .commerce-cart-drawer .commerce-checkout-action-copy span {
    font-size: 0.58rem;
  }

  .commerce-cart-drawer .commerce-checkout-action-copy strong {
    font-size: 1.24rem;
  }

  .commerce-cart-drawer .commerce-checkout-action-copy small {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-cart-drawer .commerce-checkout-action-steps {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .commerce-cart-drawer .commerce-checkout-action-step {
    width: 100%;
    min-height: 34px;
    padding: 0;
  }

  .commerce-cart-drawer .commerce-checkout-action-step .commerce-icon {
    width: 13px;
    height: 13px;
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-action-dock {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  }

  .commerce-cart-drawer .commerce-checkout-steps {
    grid-template-columns: repeat(3, 38px);
    justify-content: start;
    gap: 6px;
  }

  .commerce-cart-drawer .commerce-checkout-steps span {
    justify-content: center;
    width: 38px;
    min-height: 34px;
    padding: 0;
    font-size: 0;
  }

  .commerce-cart-drawer .commerce-checkout-steps .commerce-icon {
    width: 14px;
    height: 14px;
  }

  .commerce-cart-drawer .commerce-checkout-assurance {
    grid-template-columns: repeat(3, 38px);
    justify-content: start;
    gap: 6px;
  }

  .commerce-cart-drawer .commerce-checkout-assurance span {
    place-items: center;
    width: 38px;
    min-height: 34px;
    padding: 0;
  }

  .commerce-cart-drawer .commerce-checkout-assurance strong,
  .commerce-cart-drawer .commerce-checkout-assurance small,
  .commerce-cart-drawer .commerce-account-choice legend,
  .commerce-cart-drawer .commerce-checkout-field-group legend span,
  .commerce-cart-drawer .commerce-checkout-fields label span {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-cart-drawer .commerce-checkout-fieldset-grid {
    gap: 8px;
  }

  .commerce-cart-drawer .commerce-checkout-field-group {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 8px;
    padding: 8px;
    border-radius: 7px;
  }

  .commerce-cart-drawer .commerce-checkout-field-group legend {
    grid-column: 1;
    grid-row: 1;
    display: inline-grid;
    justify-content: center;
    align-content: center;
    width: 34px;
    min-height: 34px;
    margin: 0;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.7);
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-field-group legend {
    border-color: rgba(247, 244, 239, 0.15);
    background: rgba(255, 253, 248, 0.06);
  }

  .commerce-cart-drawer .commerce-checkout-field-group legend .commerce-icon {
    width: 14px;
    height: 14px;
  }

  .commerce-cart-drawer .commerce-checkout-fields {
    grid-column: 2;
    grid-row: 1;
    gap: 8px;
  }

  .commerce-cart-drawer .commerce-checkout-fields input {
    min-height: 38px;
    border-radius: 7px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .commerce-cart-drawer .commerce-checkout-fields input::placeholder {
    color: rgba(49, 52, 50, 0.54);
    opacity: 1;
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-fields input::placeholder {
    color: rgba(247, 244, 239, 0.46);
  }

  .commerce-cart-drawer .commerce-account-choice {
    gap: 8px;
    padding: 10px;
  }

  .commerce-cart-drawer .commerce-account-choice label {
    min-height: 38px;
    padding: 8px;
    font-size: 0.82rem;
  }

  .commerce-cart-drawer .commerce-checkout-runway {
    display: none;
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-cart-drawer .commerce-checkout-runway-copy,
  .commerce-cart-drawer .commerce-checkout-runway-card span:not(.commerce-checkout-runway-icon),
  .commerce-cart-drawer .commerce-checkout-runway-card em,
  .commerce-cart-drawer .commerce-checkout-runway-card strong,
  .commerce-cart-drawer .commerce-checkout-runway-card small {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-cart-drawer .commerce-checkout-runway-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .commerce-cart-drawer .commerce-checkout-runway-card {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    min-height: 48px;
    padding: 8px 6px;
    text-align: center;
  }

  .commerce-cart-drawer .commerce-checkout-runway-card i {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    padding: 0;
    overflow: hidden;
    border-radius: 999px;
    color: transparent;
    font-size: 0;
    line-height: 0;
  }

  .commerce-cart-drawer .commerce-checkout-runway-card.is-ready i,
  .commerce-cart-drawer .commerce-checkout-runway-card.is-next i {
    box-shadow: 0 0 0 3px rgba(205, 174, 101, 0.12);
  }

  .commerce-cart-drawer .commerce-checkout-runway-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 860px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 14px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(216, 226, 223, 0.24)),
      rgba(255, 253, 248, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.54);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    border-color: rgba(247, 244, 239, 0.16);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(214, 192, 142, 0.08)),
      rgba(7, 16, 20, 0.24);
    box-shadow: inset 0 1px 0 rgba(247, 244, 239, 0.1);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-set-picker-cue {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-grid {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control {
    position: relative;
    gap: 8px;
    padding: 8px 8px 8px 38px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.54);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control {
    border-color: rgba(247, 244, 239, 0.12);
    background: rgba(255, 253, 248, 0.045);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
    position: absolute;
    left: 8px;
    display: inline-grid;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.62);
    color: var(--smoke);
    font-size: 0;
    line-height: 1;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend {
    top: 50%;
    transform: translateY(-50%);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
    top: 50%;
    transform: translateY(-50%);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend,
  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
    border-color: rgba(247, 244, 239, 0.16);
    background: rgba(247, 244, 239, 0.06);
    color: rgba(247, 244, 239, 0.74);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-label-text,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label-text {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option small {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-option[data-sold-out="true"] {
    display: grid;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option {
    width: auto;
    min-width: 0;
    min-height: 44px;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    padding: 8px 4px;
    text-align: center;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option span {
    font-size: 0.78rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option:has(input:checked) {
    border-color: rgba(157, 125, 49, 0.98);
    background: linear-gradient(135deg, rgba(222, 190, 120, 0.96), rgba(255, 247, 219, 0.94));
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(163, 134, 67, 0.24), inset 0 0 0 1px rgba(255, 253, 248, 0.78);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option:has(input:checked)::after {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 1;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 2px rgba(255, 253, 248, 0.72);
    content: "";
    opacity: 0.88;
    pointer-events: none;
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option:has(input:checked) {
    border-color: rgba(226, 196, 128, 0.98);
    background: linear-gradient(135deg, rgba(226, 196, 128, 0.98), rgba(252, 238, 197, 0.94));
    color: #18100c;
    box-shadow: 0 12px 26px rgba(226, 196, 128, 0.25), inset 0 0 0 1px rgba(255, 253, 248, 0.5);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option:has(input:checked)::after {
    background: rgba(24, 16, 12, 0.88);
    box-shadow: 0 0 0 2px rgba(247, 244, 239, 0.74);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option small {
    display: block;
    color: var(--smoke);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option small {
    color: rgba(247, 244, 239, 0.56);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-control {
    position: relative;
    grid-column: auto;
    grid-template-columns: 24px minmax(0, 164px);
    gap: 8px;
    align-items: center;
    justify-self: start;
    padding-left: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
    position: static;
    transform: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper {
    width: 100%;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 44px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper input {
    min-height: 44px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper input {
    width: auto;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-self: stretch;
    width: 100%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta > span {
    justify-self: start;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-action {
    width: 100%;
    min-height: 54px;
    justify-self: stretch;
    padding-inline: 16px;
  }
}

@media (max-width: 860px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    position: relative;
    z-index: 3;
    gap: 8px;
    margin: -24px 16px 0;
    padding: 10px;
    border-color: rgba(255, 253, 248, 0.64);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.22)),
      rgba(255, 253, 248, 0.64);
    box-shadow:
      0 18px 42px rgba(26, 26, 26, 0.14),
      inset 0 1px 0 rgba(255, 253, 248, 0.7);
    backdrop-filter: blur(20px) saturate(1.08);
    -webkit-backdrop-filter: blur(20px) saturate(1.08);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    border-color: rgba(247, 244, 239, 0.2);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(214, 192, 142, 0.1)),
      rgba(7, 16, 20, 0.5);
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(247, 244, 239, 0.12);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-grid {
    gap: 6px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control {
    min-height: 42px;
    gap: 6px;
    padding: 0 0 0 30px;
    border: 0;
    background: transparent;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
    left: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-color: rgba(26, 26, 26, 0.1);
    background: rgba(255, 253, 248, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.64);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-control legend,
  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-label {
    border-color: rgba(247, 244, 239, 0.18);
    background: rgba(247, 244, 239, 0.08);
    box-shadow: inset 0 1px 0 rgba(247, 244, 239, 0.1);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-options {
    gap: 4px;
    padding: 3px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.44);
    box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.44);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-options {
    border-color: rgba(247, 244, 239, 0.12);
    background: rgba(255, 253, 248, 0.045);
    box-shadow: inset 0 1px 0 rgba(247, 244, 239, 0.08);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option {
    min-height: 42px;
    padding: 6px 3px;
    border-radius: 9px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-option[data-sold-out="true"] {
    opacity: 0.48;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-control {
    grid-template-columns: 24px minmax(0, 150px);
    gap: 6px;
    margin-top: -1px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    min-height: 42px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-quantity-stepper input {
    min-height: 42px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta > span {
    display: grid;
    min-width: 58px;
    min-height: 54px;
    place-items: center;
    padding: 0 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.68);
    color: var(--smoke);
    box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.58);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta > span {
    border-color: rgba(247, 244, 239, 0.16);
    background: rgba(247, 244, 239, 0.06);
    color: var(--paper);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-action {
    width: 100%;
    min-height: 54px;
    padding-inline: 14px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-purchase-row {
    gap: 7px;
    margin: 0;
    padding: 8px;
    border-radius: 12px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation {
    grid-template-columns: minmax(124px, 0.42fr) minmax(0, 0.58fr);
    align-items: stretch;
    overflow: hidden;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-visual {
    min-height: 232px;
    height: 100%;
    border-radius: 7px 0 0 7px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-visual::before,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-visual::after {
    border-radius: inherit;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-visual img {
    height: 100%;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-secondary-product-strip-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1.28fr) minmax(0, 0.72fr);
    gap: 4px;
    padding: 5px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-secondary-product-strip-track:has(.commerce-secondary-product-frame:nth-child(2):last-child) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-secondary-product-frame:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-secondary-product-frame span {
    right: 5px;
    bottom: 5px;
    width: 24px;
    height: 24px;
    backdrop-filter: blur(10px);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-secondary-product-frame .commerce-icon {
    width: 11px;
    height: 11px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-image-controls.is-focused-shop {
    top: 8px;
    left: 8px;
    gap: 4px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-image-controls.is-focused-shop button {
    width: 32px;
    height: 32px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-visual-action-tray {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-body {
    align-content: center;
    gap: 0;
    padding: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-initiation .commerce-product-copy {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-grid {
    gap: 5px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-control {
    min-height: 42px;
    padding-left: 28px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-control legend {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-options {
    gap: 3px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 2px;
    border-radius: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-option {
    min-height: 42px;
    padding: 5px 2px;
    border-radius: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-size-option span {
    font-size: 0.72rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-quantity-control {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-meta {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 6px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-meta > span {
    min-width: 54px;
    min-height: 48px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-meta button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-action {
    gap: 4px;
    min-width: 0;
    min-height: 48px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-meta button span,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-action span {
    overflow: hidden;
    font-size: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-meta button .commerce-icon,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary.is-available .commerce-product-action .commerce-icon {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 860px) {
  .angel-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-body {
    position: relative;
    z-index: 4;
    gap: 0;
    padding: 0 0 14px;
    overflow: visible;
  }

  .angel-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .angel-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-visual {
    position: relative;
    z-index: 1;
  }

  .angel-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-meta {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: auto;
    margin: clamp(-94px, -22vw, -76px) 16px 0;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 253, 248, 0.78);
    border-radius: 20px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.2)),
      rgba(255, 253, 248, 0.62);
    box-shadow:
      0 22px 52px rgba(124, 74, 56, 0.2),
      inset 0 1px 0 rgba(255, 253, 248, 0.82);
    backdrop-filter: blur(24px) saturate(1.12);
    -webkit-backdrop-filter: blur(24px) saturate(1.12);
  }

  .angel-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-meta::before {
    position: absolute;
    inset: -45% -24%;
    pointer-events: none;
    content: "";
    background:
      linear-gradient(112deg, transparent 0 42%, rgba(255, 253, 248, 0.62) 49%, transparent 58%),
      radial-gradient(circle at 78% 18%, rgba(200, 169, 102, 0.18), transparent 36%);
    opacity: 0.72;
    transform: translateX(-34%) skewX(-12deg);
  }

  .angel-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-meta > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .angel-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-action {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 56px;
    justify-content: center;
    border-color: rgba(26, 26, 26, 0.08);
    background:
      linear-gradient(135deg, rgba(26, 26, 26, 0.96), rgba(124, 74, 56, 0.92)),
      var(--ink);
    color: var(--paper);
    box-shadow:
      0 14px 28px rgba(26, 26, 26, 0.18),
      inset 0 1px 0 rgba(255, 253, 248, 0.16);
  }

  .angel-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-action .commerce-icon {
    border-color: rgba(255, 253, 248, 0.18);
    background: rgba(255, 253, 248, 0.1);
  }

  .siren-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-body {
    position: relative;
    z-index: 4;
    gap: 0;
    padding: 0 0 14px;
    overflow: visible;
  }

  .siren-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .siren-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-visual {
    position: relative;
    z-index: 1;
  }

  .siren-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-meta {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: auto;
    margin: clamp(-94px, -22vw, -76px) 16px 0;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(247, 244, 239, 0.24);
    border-radius: 20px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.12), rgba(214, 192, 142, 0.14)),
      rgba(7, 16, 20, 0.58);
    box-shadow:
      0 24px 58px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(247, 244, 239, 0.14);
    backdrop-filter: blur(24px) saturate(1.12);
    -webkit-backdrop-filter: blur(24px) saturate(1.12);
  }

  .siren-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-meta::before {
    position: absolute;
    inset: -45% -24%;
    pointer-events: none;
    content: "";
    background:
      linear-gradient(112deg, transparent 0 42%, rgba(214, 192, 142, 0.22) 49%, transparent 58%),
      radial-gradient(circle at 76% 18%, rgba(214, 192, 142, 0.18), transparent 36%);
    opacity: 0.76;
    transform: translateX(-34%) skewX(-12deg);
  }

  .siren-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-meta > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .siren-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-action {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 56px;
    justify-content: center;
    border-color: rgba(247, 244, 239, 0.72);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 239, 0.9)),
      var(--paper);
    color: #071014;
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 253, 248, 0.86);
  }

  .siren-domain-page.commerce-shop-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-preview.is-initiation .commerce-product-action .commerce-icon {
    border-color: rgba(7, 16, 20, 0.12);
    background: rgba(7, 16, 20, 0.04);
  }
}

@media (max-width: 860px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available.is-initiation .commerce-product-body {
    z-index: 4;
    overflow: visible;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-visual {
    z-index: 1;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    z-index: 5;
    margin: clamp(-108px, -25vw, -88px) clamp(24px, 7vw, 34px) 0;
    padding: 8px;
    border-color: rgba(255, 253, 248, 0.48);
    border-radius: 16px;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.54), rgba(216, 226, 223, 0.12)),
      rgba(255, 253, 248, 0.36);
    box-shadow:
      0 14px 34px rgba(26, 26, 26, 0.14),
      inset 0 1px 0 rgba(255, 253, 248, 0.56);
    backdrop-filter: blur(16px) saturate(1.08);
    -webkit-backdrop-filter: blur(16px) saturate(1.08);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row {
    border-color: rgba(247, 244, 239, 0.18);
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.1), rgba(214, 192, 142, 0.08)),
      rgba(7, 16, 20, 0.38);
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(247, 244, 239, 0.12);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-options {
    border-color: rgba(26, 26, 26, 0.06);
    background: rgba(255, 253, 248, 0.2);
    box-shadow: none;
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-size-options {
    border-color: rgba(247, 244, 239, 0.09);
    background: rgba(255, 253, 248, 0.035);
    box-shadow: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-purchase-row {
    grid-template-columns: minmax(106px, 0.42fr) minmax(0, 1fr);
    grid-template-areas:
      "sizes sizes"
      "quantity meta";
    gap: 7px 8px;
    margin: clamp(-102px, -24vw, -84px) clamp(28px, 8vw, 38px) 0;
    padding: 7px;
    border-radius: 15px;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.46), rgba(216, 226, 223, 0.1)),
      rgba(255, 253, 248, 0.31);
    backdrop-filter: blur(12px) saturate(1.06);
    -webkit-backdrop-filter: blur(12px) saturate(1.06);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-purchase-row {
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.07)),
      rgba(7, 16, 20, 0.33);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-size-grid {
    grid-area: sizes;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-control {
    grid-area: quantity;
    grid-template-columns: 22px minmax(0, 92px);
    gap: 5px;
    align-self: stretch;
    justify-self: stretch;
    margin-top: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-label {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-stepper {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    min-height: 48px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-stepper button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-stepper input {
    min-height: 48px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta {
    grid-area: meta;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 6px;
    align-self: stretch;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta > span {
    min-width: 0;
    min-height: 48px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-action {
    min-height: 48px;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta button span,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-action span {
    font-size: 0.68rem;
  }

  .commerce-product-detail-page .commerce-pdp-buy-stage {
    position: relative;
    z-index: 3;
    width: min(100%, 370px);
    margin: -58px auto 0;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card.commerce-product-card {
    overflow: hidden;
    min-height: 0;
    border-color: rgba(26, 26, 26, 0.12);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(216, 226, 223, 0.32)),
      rgba(255, 253, 248, 0.7);
    box-shadow: 0 20px 46px rgba(26, 26, 26, 0.16);
    backdrop-filter: blur(18px) saturate(1.08);
  }

  .siren-domain-page.commerce-product-detail-page .commerce-pdp-quick-buy-card.commerce-product-card {
    border-color: rgba(247, 244, 239, 0.18);
    background:
      linear-gradient(145deg, rgba(13, 34, 38, 0.86), rgba(7, 16, 20, 0.76)),
      rgba(7, 16, 20, 0.72);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-hero-buy-body {
    gap: 9px;
    padding: 10px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-cues {
    grid-template-columns: repeat(3, 38px);
    justify-content: center;
    gap: 6px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-cues > span,
  .commerce-product-detail-page .commerce-pdp-quick-cues > button,
  .commerce-product-detail-page .commerce-pdp-quick-cues > a {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    gap: 0;
    place-items: center;
    border-radius: 999px;
    padding: 0;
  }

  .commerce-product-detail-page .commerce-pdp-quick-cues > span::after {
    width: 17px;
    height: 4px;
    background:
      linear-gradient(90deg, currentColor 0 4px, transparent 4px 7px, currentColor 7px 11px, transparent 11px 14px, currentColor 14px 17px);
    opacity: 0.56;
  }

  .commerce-product-detail-page .commerce-pdp-quick-cues .commerce-icon {
    width: 13px;
    height: 13px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-purchase-row {
    gap: 8px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-purchase-row.is-pdp-access-preview {
    display: block;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-control {
    min-height: 0;
    gap: 5px;
    padding-left: 31px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-control legend,
  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-quantity-label {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-option {
    min-height: 40px;
    padding: 7px 6px;
    border-radius: 8px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-option span {
    font-size: 0.82rem;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-option:has(input:checked) {
    border-color: rgba(157, 125, 49, 0.98);
    background:
      linear-gradient(135deg, rgba(225, 192, 116, 0.98), rgba(255, 248, 223, 0.94)),
      rgba(225, 192, 116, 0.9);
    color: #18100c;
    box-shadow:
      0 10px 24px rgba(163, 134, 67, 0.24),
      inset 0 0 0 1px rgba(255, 253, 248, 0.7);
    transform: translateY(-1px);
  }

  .siren-domain-page.commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-option:has(input:checked) {
    border-color: rgba(226, 196, 128, 0.98);
    background:
      linear-gradient(135deg, rgba(226, 196, 128, 0.98), rgba(252, 238, 197, 0.94)),
      rgba(226, 196, 128, 0.9);
    color: #18100c;
    box-shadow:
      0 12px 26px rgba(226, 196, 128, 0.26),
      inset 0 0 0 1px rgba(255, 253, 248, 0.5);
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-option:has(input:checked)::after {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 1;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(24, 16, 12, 0.88);
    box-shadow: 0 0 0 2px rgba(255, 253, 248, 0.72);
    content: "";
    opacity: 0.9;
    pointer-events: none;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-size-note {
    display: none;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-quantity-control {
    grid-template-columns: 26px auto;
    gap: 7px;
    align-items: center;
    justify-self: start;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-quantity-stepper {
    grid-template-columns: 38px 48px 38px;
    min-height: 40px;
    border-radius: 8px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-quantity-stepper button,
  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-quantity-stepper input {
    min-height: 40px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-quantity-stepper input {
    width: 48px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look {
    min-height: 34px;
    padding: 4px 6px 4px 4px;
    border-radius: 999px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look.is-access-preview {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    min-height: 34px;
    max-height: 44px;
    align-items: center;
    overflow: hidden;
    border-color: rgba(157, 125, 49, 0.18);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(224, 231, 229, 0.42)),
      rgba(255, 253, 248, 0.72);
    box-shadow:
      inset 0 0 0 1px rgba(255, 253, 248, 0.74),
      0 10px 28px rgba(26, 26, 26, 0.06);
  }

  .siren-domain-page.commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look.is-access-preview {
    border-color: rgba(226, 196, 128, 0.2);
    background:
      linear-gradient(135deg, rgba(247, 244, 239, 0.1), rgba(226, 196, 128, 0.09)),
      rgba(255, 253, 248, 0.045);
    box-shadow:
      inset 0 0 0 1px rgba(247, 244, 239, 0.08),
      0 12px 30px rgba(0, 0, 0, 0.18);
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look > div {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
    min-width: 0;
    min-height: 0;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look span {
    position: static;
    display: grid;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    place-items: center;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    border: 1px solid rgba(157, 125, 49, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.8);
    color: var(--teal);
    font-size: 0;
    white-space: normal;
    box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.72);
  }

  .siren-domain-page.commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look span {
    border-color: rgba(226, 196, 128, 0.24);
    background: rgba(226, 196, 128, 0.14);
    color: var(--champagne);
    box-shadow: inset 0 0 0 1px rgba(247, 244, 239, 0.06);
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look span .commerce-icon {
    width: 13px;
    height: 13px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look em {
    min-width: 32px;
    min-height: 22px;
    padding-inline: 9px;
    font-size: 0.62rem;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    min-height: 36px;
    max-height: 46px;
    padding: 5px 7px 5px 5px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) > .commerce-selected-look-copy {
    grid-template-columns: 28px minmax(42px, auto) minmax(0, 1fr);
    gap: 5px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) strong[data-selected-look-summary] {
    display: inline-grid;
    width: auto;
    min-width: 42px;
    min-height: 28px;
    place-items: center;
    padding-inline: 8px;
    overflow: hidden;
    border: 1px solid rgba(157, 125, 49, 0.13);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.72);
    color: transparent;
    font-size: 0;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.58);
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) strong[data-selected-look-summary]::after {
    color: var(--teal);
    content: attr(data-selected-look-compact);
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) .commerce-selected-look-tokens {
    display: flex;
    min-width: 0;
    gap: 4px;
    align-items: center;
    overflow: hidden;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) .commerce-selected-look-token {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 3px;
    align-items: baseline;
    min-width: 0;
    max-width: 72px;
    min-height: 28px;
    padding: 4px 7px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.58);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.52);
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) .commerce-selected-look-token[data-ready="false"] {
    color: var(--smoke);
    opacity: 0.72;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) .commerce-selected-look-token b {
    color: inherit;
    font-size: 0.46rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    opacity: 0.7;
    overflow: hidden;
    text-overflow: clip;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) .commerce-selected-look-token var {
    color: inherit;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    overflow: hidden;
    text-overflow: clip;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .siren-domain-page.commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) strong[data-selected-look-summary] {
    border-color: rgba(226, 196, 128, 0.22);
    background: rgba(226, 196, 128, 0.12);
    box-shadow: inset 0 0 0 1px rgba(247, 244, 239, 0.06);
  }

  .siren-domain-page.commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) strong[data-selected-look-summary]::after {
    color: var(--champagne);
  }

  .siren-domain-page.commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-selected-look:not(.is-access-preview) .commerce-selected-look-token {
    border-color: rgba(247, 244, 239, 0.11);
    background: rgba(247, 244, 239, 0.075);
    color: var(--paper);
    box-shadow: inset 0 0 0 1px rgba(247, 244, 239, 0.04);
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-product-meta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 7px;
    align-items: center;
    margin-top: 0;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-product-meta > span {
    display: grid;
    min-width: 58px;
    min-height: 48px;
    place-items: center;
    padding: 0 10px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.68);
    color: var(--smoke);
    font-size: 0.66rem;
    line-height: 1;
  }

  .siren-domain-page.commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-product-meta > span {
    border-color: rgba(247, 244, 239, 0.16);
    background: rgba(247, 244, 239, 0.06);
    color: var(--paper);
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-product-meta button,
  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-product-meta .commerce-product-action {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding-inline: 12px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-checkout-trust-rail {
    grid-template-columns: repeat(3, 32px);
    justify-content: center;
    gap: 7px;
  }

  .commerce-product-detail-page .commerce-pdp-quick-buy-card .commerce-checkout-trust-item {
    width: 32px;
    min-height: 32px;
  }

  .commerce-cart-drawer {
    height: 100dvh;
    max-height: 100dvh;
    padding: 10px 12px calc(14px + env(safe-area-inset-bottom));
    scroll-padding-bottom: 24px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(244, 240, 232, 0.98) 54%, rgba(232, 226, 214, 0.99) 100%),
      var(--paper);
    box-shadow: none;
    isolation: isolate;
  }

  .siren-domain-page .commerce-cart-drawer {
    background:
      linear-gradient(180deg, rgba(5, 14, 17, 0.99) 0%, rgba(7, 16, 20, 0.99) 58%, rgba(3, 10, 13, 1) 100%),
      #071014;
  }

  .commerce-cart-drawer .commerce-cart-card {
    gap: 10px;
    min-height: calc(100dvh - 24px - env(safe-area-inset-bottom));
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    animation: none;
  }

  .commerce-cart-drawer .commerce-cart-heading {
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    gap: 8px;
    padding: 4px 0 8px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  }

  .siren-domain-page .commerce-cart-drawer .commerce-cart-heading {
    border-color: rgba(247, 244, 239, 0.13);
  }

  .commerce-cart-drawer .commerce-cart-heading .eyebrow {
    display: none;
  }

  .commerce-cart-drawer .commerce-cart-heading h2 {
    align-self: center;
    overflow: hidden;
    color: var(--smoke);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .siren-domain-page .commerce-cart-drawer .commerce-cart-heading h2 {
    color: rgba(247, 244, 239, 0.72);
  }

  .commerce-cart-drawer .commerce-cart-heading button,
  .commerce-cart-drawer .commerce-cart-item button {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    border-radius: 999px;
    font-size: 0;
  }

  .commerce-cart-drawer .commerce-cart-heading button span,
  .commerce-cart-drawer .commerce-cart-item button span {
    display: none;
  }

  .commerce-cart-drawer .commerce-cart-heading button .commerce-icon,
  .commerce-cart-drawer .commerce-cart-item button .commerce-icon {
    width: 16px;
    height: 16px;
  }

  .commerce-cart-drawer .commerce-cart-list {
    gap: 8px;
  }

  .commerce-cart-drawer .commerce-cart-composition {
    gap: 8px;
    padding: 7px 8px;
    border-radius: 10px;
  }

  .commerce-cart-drawer .commerce-cart-composition-stack {
    min-width: 58px;
  }

  .commerce-cart-drawer .commerce-cart-composition-stack img {
    width: 36px;
    height: 44px;
    margin-left: -12px;
    border-radius: 7px;
  }

  .commerce-cart-drawer .commerce-cart-composition strong {
    font-size: 0.66rem;
    line-height: 1;
  }

  .commerce-cart-drawer .commerce-cart-composition small {
    font-size: 0.57rem;
    line-height: 1.1;
  }

  .commerce-cart-drawer .commerce-cart-item {
    grid-template-columns: 52px minmax(0, 1fr) 40px;
    gap: 8px;
    align-items: center;
    min-height: 76px;
    padding: 8px;
    border-radius: 10px;
  }

  .commerce-cart-drawer .commerce-cart-item img {
    width: 52px;
    height: 62px;
    border-radius: 7px;
  }

  .commerce-cart-drawer .commerce-cart-item > div {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    gap: 4px 5px;
    align-items: center;
  }

  .commerce-cart-drawer .commerce-cart-item strong {
    flex: 1 0 100%;
    overflow: hidden;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .commerce-cart-drawer .commerce-cart-item p {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 999px;
    padding: 5px 7px;
    background: rgba(255, 253, 248, 0.52);
    color: var(--smoke);
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .siren-domain-page .commerce-cart-drawer .commerce-cart-item p {
    border-color: rgba(247, 244, 239, 0.12);
    background: rgba(247, 244, 239, 0.055);
    color: rgba(247, 244, 239, 0.66);
  }

  .commerce-cart-drawer .commerce-cart-item-size {
    color: var(--ink);
    background: rgba(200, 169, 102, 0.18);
  }

  .siren-domain-page .commerce-cart-drawer .commerce-cart-item-size {
    color: rgba(247, 244, 239, 0.9);
    background: rgba(214, 192, 142, 0.14);
  }

  .commerce-cart-drawer .commerce-cart-item button {
    grid-column: auto;
    justify-self: center;
  }

  .commerce-cart-drawer .commerce-cart-total {
    padding-top: 8px;
  }

  .commerce-cart-drawer .commerce-checkout-form {
    gap: 10px;
    min-height: max(390px, calc(100dvh - 238px - env(safe-area-inset-bottom)));
    align-content: start;
  }

  .commerce-cart-drawer .commerce-checkout-fieldset-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
  }

  .commerce-cart-drawer .commerce-checkout-field-group {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding: 6px;
    border-radius: 9px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(216, 226, 223, 0.2)),
      rgba(255, 253, 248, 0.56);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-field-group {
    background:
      linear-gradient(135deg, rgba(247, 244, 239, 0.07), rgba(12, 46, 48, 0.18)),
      rgba(255, 253, 248, 0.035);
  }

  .commerce-cart-drawer .commerce-checkout-field-group[data-active="true"] {
    flex: 1 1 calc(100% - 52px);
    width: calc(100% - 52px);
    max-width: calc(100% - 52px);
    order: 2;
    border-color: rgba(205, 174, 101, 0.42);
    box-shadow:
      inset 0 0 0 1px rgba(205, 174, 101, 0.1),
      0 10px 24px rgba(26, 26, 26, 0.08);
  }

  .commerce-cart-drawer .commerce-checkout-field-group[data-active="false"] {
    flex: 0 0 44px;
    order: 1;
    width: 44px;
    min-height: 44px;
    grid-template-columns: 32px;
    gap: 0;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.48);
    box-shadow: inset 0 0 0 1px rgba(205, 174, 101, 0.08);
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-field-group[data-active="true"] {
    border-color: rgba(205, 174, 101, 0.34);
    box-shadow: inset 0 0 0 1px rgba(205, 174, 101, 0.08), 0 12px 26px rgba(0, 0, 0, 0.18);
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-field-group[data-active="false"] {
    background: rgba(255, 253, 248, 0.055);
    box-shadow: inset 0 0 0 1px rgba(205, 174, 101, 0.1);
  }

  .commerce-cart-drawer .commerce-checkout-field-group::before {
    position: absolute;
    inset: 22px 10px auto 46px;
    width: auto;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(205, 174, 101, 0.32), transparent);
    pointer-events: none;
  }

  .commerce-cart-drawer .commerce-checkout-field-group[data-active="true"]::before {
    display: none;
  }

  .commerce-cart-drawer .commerce-checkout-field-group:focus-within {
    border-color: rgba(205, 174, 101, 0.46);
    box-shadow: inset 0 0 0 1px rgba(205, 174, 101, 0.12);
  }

  .commerce-cart-drawer .commerce-checkout-field-group legend {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
    width: 32px;
    min-height: 32px;
    margin: 0;
  }

  .commerce-cart-drawer .commerce-checkout-field-group[data-active="true"] legend {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-cart-drawer .commerce-checkout-field-group[data-ready="true"] legend::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(205, 174, 101, 0.92);
    box-shadow: 0 0 0 2px rgba(255, 253, 248, 0.74);
    content: "";
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-field-group[data-ready="true"] legend::after {
    box-shadow: 0 0 0 2px rgba(6, 17, 21, 0.78);
  }

  .commerce-cart-drawer .commerce-checkout-fields {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 6px;
    overflow: hidden;
    max-height: 280px;
    opacity: 1;
    visibility: visible;
    transition: max-height 200ms ease, opacity 160ms ease;
  }

  .commerce-cart-drawer .commerce-checkout-field-group[data-active="true"] .commerce-checkout-fields {
    grid-row: 1;
  }

  .commerce-cart-drawer .commerce-checkout-field-group.is-delivery[data-active="true"],
  .commerce-cart-drawer .commerce-checkout-field-group.is-delivery[data-active="true"] .commerce-checkout-fields,
  .commerce-cart-drawer .commerce-checkout-field-group.is-delivery[data-active="true"] .commerce-checkout-address-field {
    overflow: visible;
  }

  .commerce-cart-drawer .commerce-checkout-field-group[data-active="false"] .commerce-checkout-fields {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .commerce-cart-drawer .commerce-checkout-field-group[data-active="false"]::before {
    display: none;
  }

  .commerce-cart-drawer .commerce-checkout-field-group.is-contact .commerce-checkout-fields label:nth-child(1),
  .commerce-cart-drawer .commerce-checkout-field-group.is-contact .commerce-checkout-fields label:nth-child(4),
  .commerce-cart-drawer .commerce-checkout-field-group.is-delivery .commerce-checkout-fields label:nth-child(1),
  .commerce-cart-drawer .commerce-checkout-field-group.is-delivery .commerce-checkout-fields label:nth-child(2),
  .commerce-cart-drawer .commerce-checkout-field-group.is-delivery .commerce-checkout-fields label:nth-child(3) {
    grid-column: 1 / -1;
  }

  .commerce-cart-drawer .commerce-checkout-fields input {
    min-height: 40px;
    padding: 0 10px;
    border-color: rgba(26, 26, 26, 0.14);
    background: rgba(255, 253, 248, 0.72);
    font-size: 0.82rem;
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-fields input {
    border-color: rgba(247, 244, 239, 0.16);
    background: rgba(255, 253, 248, 0.055);
  }

  .commerce-cart-drawer .commerce-checkout-fields input:focus {
    outline: 0;
    border-color: rgba(205, 174, 101, 0.58);
    box-shadow: 0 0 0 3px rgba(205, 174, 101, 0.12);
  }

  .commerce-cart-drawer .commerce-checkout-runway {
    display: none;
    gap: 0;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .commerce-cart-drawer .commerce-checkout-runway::before {
    display: none;
  }

  .commerce-cart-drawer .commerce-checkout-runway-grid {
    gap: 8px;
    padding: 1px 0;
  }

  .commerce-cart-drawer .commerce-checkout-runway-card {
    min-height: 40px;
    border-radius: 999px;
    padding: 3px;
    background: transparent;
    box-shadow: none;
  }

  .commerce-cart-drawer .commerce-checkout-runway-card:hover,
  .commerce-cart-drawer .commerce-checkout-runway-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(205, 174, 101, 0.12);
    transform: none;
  }

  .commerce-cart-drawer .commerce-checkout-runway-card.is-ready {
    background: rgba(216, 226, 223, 0.12);
  }

  .commerce-cart-drawer .commerce-checkout-runway-card.is-next {
    background: rgba(205, 174, 101, 0.12);
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-runway-card.is-ready {
    background: rgba(247, 244, 239, 0.055);
  }

  .siren-domain-page .commerce-cart-drawer .commerce-checkout-runway-card.is-next {
    background: rgba(205, 174, 101, 0.13);
  }

  .commerce-cart-drawer .commerce-checkout-runway-icon {
    width: 32px;
    height: 32px;
  }

  .commerce-cart-drawer .commerce-checkout-runway-card i {
    top: 3px;
    right: 8px;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary,
  .commerce-cart-drawer .commerce-checkout-steps,
  .commerce-cart-drawer .commerce-checkout-assurance,
  .commerce-cart-drawer .commerce-checkout-handoff {
    display: none;
  }

  .commerce-cart-drawer .commerce-checkout-action-dock {
    margin-top: 2px;
  }

  .commerce-cart-drawer .commerce-account-choice:not(.is-signed-in) {
    grid-template-columns: minmax(0, 1fr);
    justify-items: end;
    align-self: end;
    gap: 6px;
    margin-top: auto;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .commerce-cart-drawer .commerce-account-choice:not(.is-signed-in) label:has(input[value="guest"]) {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-cart-drawer .commerce-account-choice:not(.is-signed-in) label {
    position: relative;
    justify-content: center;
    width: min(178px, 100%);
    min-height: 40px;
    gap: 7px;
    border-radius: 999px;
    padding: 0 10px;
    background: rgba(255, 253, 248, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
  }

  .siren-domain-page .commerce-cart-drawer .commerce-account-choice:not(.is-signed-in) label {
    background: rgba(255, 253, 248, 0.055);
  }

  .commerce-cart-drawer .commerce-account-choice:not(.is-signed-in) label:has(input:checked) {
    box-shadow: inset 0 0 0 1px rgba(205, 174, 101, 0.18);
  }

  .commerce-cart-drawer .commerce-account-choice:not(.is-signed-in) label input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .commerce-cart-drawer .commerce-account-choice:not(.is-signed-in) label span {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .commerce-cart-drawer .commerce-account-choice:not(.is-signed-in) label .commerce-icon {
    width: 14px;
    height: 14px;
  }

  .commerce-cart-drawer .commerce-checkout-password {
    grid-column: 1 / -1;
  }

  .commerce-cart-drawer .commerce-checkout-password input {
    min-height: 40px;
    border-radius: 999px;
  }
}

@media (min-width: 861px) {
  .commerce-cart-drawer {
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    overflow: hidden;
  }

  .commerce-cart-drawer > [data-cart-panel] {
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 6px;
    padding-bottom: 220px;
    scroll-padding-bottom: 220px;
    scrollbar-color: rgba(200, 169, 102, 0.52) rgba(26, 26, 26, 0.06);
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar {
    width: 8px;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.06);
    border-radius: 999px;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-thumb {
    background: rgba(200, 169, 102, 0.52);
    border-radius: 999px;
  }

  .siren-domain-page .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-track {
    background: rgba(247, 244, 239, 0.08);
  }

  .siren-domain-page .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-thumb {
    background: rgba(214, 192, 142, 0.58);
  }

  .commerce-cart-drawer .commerce-cart-visual-summary {
    display: grid;
    grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    min-height: 0;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary figure {
    height: 168px;
    min-height: 168px;
    margin-bottom: 0;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary figure img {
    height: 168px;
    min-height: 168px;
  }

  .commerce-cart-drawer .commerce-cart-visual-copy {
    align-content: space-between;
    gap: 8px;
  }

  .commerce-cart-drawer .commerce-cart-visual-copy h3 {
    font-size: 1.42rem;
  }

  .commerce-cart-drawer .commerce-cart-visual-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-cart-drawer .commerce-cart-visual-pills span {
    min-height: 58px;
    padding: 8px;
  }

  .commerce-cart-drawer .commerce-checkout-action-dock {
    top: 0;
    bottom: auto;
  }

  .commerce-cart-drawer .commerce-checkout-action-steps {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .commerce-cart-drawer .commerce-checkout-action-step {
    width: 100%;
    min-height: 34px;
    padding: 0;
  }

  .commerce-floating-cart-button {
    grid-template-columns: auto auto;
    align-items: center;
    width: auto;
    min-width: 72px;
    height: 56px;
    gap: 8px;
    padding: 0 18px 0 16px;
  }

  .commerce-floating-cart-button span {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    color: inherit;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

@media (min-width: 861px) and (max-height: 820px) {
  .commerce-cart-drawer {
    padding: 10px 12px 14px;
  }

  .commerce-cart-drawer > [data-cart-panel] {
    padding-bottom: 170px;
    scroll-padding-bottom: 170px;
  }

  .commerce-cart-drawer .commerce-cart-card {
    gap: 8px;
    min-height: 0;
  }

  .commerce-cart-drawer .commerce-cart-heading {
    padding-bottom: 6px;
  }

  .commerce-cart-drawer .commerce-cart-list {
    gap: 6px;
  }

  .commerce-cart-drawer .commerce-cart-item {
    min-height: 64px;
    padding: 6px;
  }

  .commerce-cart-drawer .commerce-cart-item img {
    width: 44px;
    height: 52px;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary {
    grid-template-columns: minmax(86px, 0.34fr) minmax(0, 1fr);
    gap: 8px;
  }

  .commerce-cart-drawer .commerce-cart-visual-summary figure,
  .commerce-cart-drawer .commerce-cart-visual-summary figure img {
    height: 112px;
    min-height: 112px;
  }

  .commerce-cart-drawer .commerce-cart-visual-copy h3 {
    font-size: 1.08rem;
  }

  .commerce-cart-drawer .commerce-cart-visual-pills span {
    min-height: 44px;
    padding: 6px;
  }

  .commerce-cart-drawer .commerce-cart-total {
    padding-top: 4px;
  }

  .commerce-cart-drawer .commerce-checkout-form {
    gap: 8px;
    min-height: 0;
  }

  .commerce-cart-drawer .commerce-checkout-action-dock {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px;
    padding: 7px;
  }

  .commerce-cart-drawer .commerce-checkout-action-dock img,
  .commerce-cart-drawer .commerce-checkout-action-fallback {
    width: 42px;
    height: 48px;
  }

  .commerce-cart-drawer .commerce-checkout-action-copy strong {
    font-size: 1.12rem;
  }

  .commerce-cart-drawer .commerce-checkout-action-step {
    min-height: 32px;
  }

  .commerce-cart-drawer .commerce-checkout-fields input {
    min-height: 38px;
  }
}

@media (max-width: 860px) {
  .commerce-floating-cart-shell {
    right: 14px;
    bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .commerce-floating-cart-button {
    grid-template-columns: minmax(0, 1fr);
    width: 52px;
    height: 52px;
    min-width: 52px;
    padding: 0;
  }
}

@media (min-width: 861px) {
  .commerce-floating-cart-shell.is-visible {
    right: 24px;
    bottom: 24px;
  }

  .commerce-floating-cart-button {
    min-width: 96px;
    height: 58px;
    padding: 0 20px 0 17px;
    border-color: rgba(163, 134, 67, 0.34);
    box-shadow:
      0 22px 58px rgba(26, 26, 26, 0.24),
      0 0 0 1px rgba(255, 253, 248, 0.5),
      inset 0 1px 0 rgba(255, 253, 248, 0.78);
  }

  .commerce-floating-cart-shell:not(.is-drawer-open) .commerce-floating-cart-button {
    grid-template-columns: auto minmax(0, auto) auto;
    width: auto;
    gap: 8px;
  }

  .commerce-floating-cart-shell:not(.is-drawer-open) .commerce-floating-cart-button span {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: nowrap;
    border: 0;
    color: currentColor;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1;
    text-transform: uppercase;
  }

  .commerce-floating-cart-shell:not(.is-drawer-open) .commerce-floating-cart-button strong {
    position: static;
    top: auto;
    right: auto;
    min-width: 24px;
    height: 24px;
    box-shadow: 0 8px 18px rgba(26, 26, 26, 0.18);
  }

  .siren-domain-page .commerce-floating-cart-button {
    border-color: rgba(214, 192, 142, 0.46);
    box-shadow:
      0 0 0 1px rgba(247, 244, 239, 0.1),
      0 22px 58px rgba(0, 0, 0, 0.42),
      0 0 32px rgba(214, 192, 142, 0.12);
  }
}

.commerce-cart-drawer .commerce-cart-drawer-top {
  display: grid;
  grid-template-columns: auto 40px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: auto;
  min-width: 54px;
  min-height: 40px;
  gap: 7px;
  padding: 0 11px;
  overflow: visible;
  border-color: rgba(200, 169, 102, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.82), rgba(216, 226, 223, 0.3)),
    rgba(255, 253, 248, 0.68);
  color: var(--ink);
  font-size: 0.7rem;
  box-shadow:
    0 10px 26px rgba(26, 26, 26, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.74);
}

.siren-domain-page .commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button {
  border-color: rgba(214, 192, 142, 0.32);
  background:
    linear-gradient(145deg, rgba(247, 244, 239, 0.12), rgba(214, 192, 142, 0.12)),
    rgba(7, 16, 20, 0.86);
  color: var(--paper);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(247, 244, 239, 0.1);
}

.commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button:hover,
.commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button:focus-visible {
  border-color: rgba(200, 169, 102, 0.6);
  transform: translateY(-1px);
}

.commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button .commerce-icon {
  width: 16px;
  height: 16px;
  color: var(--champagne);
}

.commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button .commerce-cart-drawer-bag-label {
  position: static;
  display: inline-block;
  grid-column: auto;
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  color: currentColor;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button strong {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--champagne);
  color: #071014;
  font: 900 0.66rem/1 var(--sans);
}

@media (min-width: 861px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-purchase-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-purchase-row .commerce-product-meta-inline {
    display: none;
  }

  .commerce-cart-drawer {
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
  }

  .commerce-cart-drawer > [data-cart-panel] {
    height: 100%;
    min-height: 0;
    max-height: min(100%, calc(100dvh - 74px));
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scrollbar-gutter: stable both-edges;
  }

  .commerce-cart-drawer .commerce-checkout-action-dock {
    position: sticky;
    top: 0;
    bottom: auto;
  }
}

@media (max-width: 860px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-purchase-row {
    grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
    grid-template-areas:
      "sizes sizes"
      "quantity meta";
    gap: 3px 7px;
    margin: clamp(-78px, -18vw, -64px) clamp(28px, 8vw, 38px) 0;
    padding: 4px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-size-grid {
    position: relative;
    grid-area: sizes;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-strip {
    position: absolute;
    z-index: 8;
    right: 0;
    bottom: calc(100% + 7px);
    left: 0;
    gap: 4px;
    pointer-events: auto;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-chip {
    grid-template-columns: 16px minmax(0, 1fr);
    min-height: 38px;
    padding: 5px 7px;
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 rgba(255, 253, 248, 0.66),
      0 12px 28px rgba(26, 26, 26, 0.16);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-chip {
    box-shadow:
      inset 0 1px 0 rgba(247, 244, 239, 0.12),
      0 14px 30px rgba(0, 0, 0, 0.28);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-icon {
    width: 16px;
    height: 16px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-icon .commerce-icon {
    width: 13px;
    height: 13px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-copy span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-copy strong {
    font-size: 0.6rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-chip .commerce-fit-meter-track {
    gap: 2px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-fit-confidence-chip .commerce-fit-meter-track b {
    height: 2px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-size-control {
    min-height: 42px;
    gap: 4px;
    padding: 0 0 0 30px;
    border-radius: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-size-control legend {
    left: 5px;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-size-options,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-size-option {
    min-height: 42px;
    padding: 7px 4px;
    border-radius: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-size-option small {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-control {
    grid-area: quantity;
    grid-template-columns: 22px minmax(0, 96px);
    gap: 5px;
    align-self: stretch;
    justify-self: stretch;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-stepper {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    min-height: 52px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-stepper button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-quantity-stepper input {
    min-height: 52px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-purchase-row .commerce-product-meta-inline {
    display: grid;
    grid-area: meta;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 6px;
    align-self: stretch;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta-inline::after {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta-inline > span,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta-inline button,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta-inline .commerce-product-action {
    min-height: 52px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available:not(.is-shop-secondary) .commerce-product-meta-main {
    display: none;
  }

  .commerce-cart-drawer .commerce-cart-drawer-top {
    grid-template-columns: auto 40px;
    min-height: 42px;
  }

  .commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button {
    min-width: 52px;
    min-height: 40px;
    padding-inline: 10px;
  }

  .commerce-floating-cart-shell {
    right: 18px;
    bottom: calc(116px + env(safe-area-inset-bottom));
  }

  .commerce-floating-cart-button {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .commerce-floating-cart-button .commerce-icon {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 861px) {
  .commerce-cart-drawer {
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }

  .commerce-cart-drawer > [data-cart-panel] {
    align-self: stretch;
    height: auto;
    min-height: 0;
    max-height: calc(100dvh - 72px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    padding-right: 8px;
    padding-bottom: clamp(96px, 18vh, 220px);
    scroll-padding-bottom: clamp(96px, 18vh, 220px);
    scrollbar-color: rgba(200, 169, 102, 0.52) rgba(26, 26, 26, 0.06);
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar {
    width: 8px;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.06);
    border-radius: 999px;
  }

  .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-thumb {
    background: rgba(200, 169, 102, 0.52);
    border-radius: 999px;
  }

  .siren-domain-page .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-track {
    background: rgba(247, 244, 239, 0.08);
  }

  .siren-domain-page .commerce-cart-drawer > [data-cart-panel]::-webkit-scrollbar-thumb {
    background: rgba(214, 192, 142, 0.58);
  }

  .commerce-cart-drawer > .commerce-cart-card[data-cart-panel] {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .commerce-cart-drawer .commerce-cart-drawer-top {
    position: sticky;
    z-index: 12;
    top: 0;
    margin: 0 -4px;
    padding: 0 4px 10px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 72%, rgba(255, 253, 248, 0) 100%);
    backdrop-filter: blur(16px);
  }

  .siren-domain-page .commerce-cart-drawer .commerce-cart-drawer-top {
    background:
      linear-gradient(180deg, rgba(5, 14, 17, 0.98) 0%, rgba(5, 14, 17, 0.92) 72%, rgba(5, 14, 17, 0) 100%);
  }

  .commerce-cart-drawer .commerce-checkout-action-dock {
    top: 0;
    z-index: 10;
  }

  .commerce-floating-cart-shell.is-visible {
    pointer-events: auto;
  }

  .commerce-floating-cart-button {
    transform: translateZ(0);
  }
}

.commerce-floating-cart-shell.is-drawer-open {
  z-index: 178;
  top: 18px;
  right: 84px;
  bottom: auto;
}

.commerce-floating-cart-shell.is-drawer-open .commerce-floating-cart-button {
  grid-template-columns: minmax(0, 1fr);
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
}

.commerce-floating-cart-shell.is-drawer-open .commerce-floating-cart-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .commerce-floating-cart-shell.is-drawer-open {
    top: calc(12px + env(safe-area-inset-top));
    right: 66px;
    bottom: auto;
  }

  .commerce-floating-cart-shell.is-drawer-open .commerce-floating-cart-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .commerce-floating-cart-shell.is-drawer-open .commerce-floating-cart-button .commerce-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 900px) {
  .site-header:has(.commerce-header-cart-button.is-visible) {
    grid-template-columns: 1fr;
  }

  .site-header:has(.commerce-header-cart-button.is-visible) .brand,
  .site-header:has(.commerce-header-cart-button.is-visible) .site-nav,
  .site-header:has(.commerce-header-cart-button.is-visible) .header-action,
  .site-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button {
    grid-column: auto;
  }

  .brand-domain-page.commerce-shop-page .domain-header:has(.commerce-header-cart-button.is-visible),
  .brand-domain-page.commerce-product-detail-page .domain-header:has(.commerce-header-cart-button.is-visible) {
    grid-template-columns: auto 46px minmax(0, 1fr);
    gap: 10px;
  }

  .brand-domain-page.commerce-shop-page .domain-header:has(.commerce-header-cart-button.is-visible) .domain-wordmark,
  .brand-domain-page.commerce-product-detail-page .domain-header:has(.commerce-header-cart-button.is-visible) .domain-wordmark {
    grid-column: 1;
    grid-row: 1;
  }

  .brand-domain-page.commerce-shop-page .domain-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button,
  .brand-domain-page.commerce-product-detail-page .domain-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 44px;
    min-width: 44px;
    min-height: 42px;
    padding: 0;
    gap: 0;
  }

  .brand-domain-page.commerce-shop-page .domain-header:has(.commerce-header-cart-button.is-visible) .domain-header-action,
  .brand-domain-page.commerce-product-detail-page .domain-header:has(.commerce-header-cart-button.is-visible) .domain-header-action {
    grid-column: 3;
    grid-row: 1;
  }

  .brand-domain-page.commerce-shop-page .domain-header:has(.commerce-header-cart-button.is-visible) .domain-nav,
  .brand-domain-page.commerce-product-detail-page .domain-header:has(.commerce-header-cart-button.is-visible) .domain-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .brand-domain-page.commerce-shop-page .domain-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button span,
  .brand-domain-page.commerce-product-detail-page .domain-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button span,
  .commerce-group-shop-page .site-header .commerce-header-cart-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .brand-domain-page.commerce-shop-page .domain-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button strong,
  .brand-domain-page.commerce-product-detail-page .domain-header:has(.commerce-header-cart-button.is-visible) .commerce-header-cart-button strong {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 21px;
    height: 21px;
    font-size: 0.6rem;
  }

  .commerce-group-shop-page .site-header .commerce-header-cart-button {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 44px;
    min-width: 44px;
    min-height: 42px;
    padding: 0;
    gap: 0;
    transform: translateY(-50%);
  }

  .commerce-group-shop-page .site-header .commerce-header-cart-button:hover,
  .commerce-group-shop-page .site-header .commerce-header-cart-button:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }
}

html.commerce-cart-open,
body.commerce-cart-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.commerce-cart-drawer {
  box-sizing: border-box;
  scrollbar-gutter: stable;
}

.commerce-cart-drawer .commerce-cart-drawer-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 40px;
  align-items: center;
  justify-content: stretch;
}

.commerce-cart-drawer .commerce-cart-drawer-top .commerce-cart-drawer-bag-button {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.commerce-cart-drawer .commerce-cart-drawer-top > span,
.commerce-cart-drawer .commerce-cart-drawer-top h2 {
  grid-column: 2;
}

.commerce-cart-drawer .commerce-cart-drawer-top > span {
  grid-row: 1;
}

.commerce-cart-drawer .commerce-cart-drawer-top h2 {
  grid-row: 2;
}

.commerce-cart-drawer .commerce-cart-drawer-top [data-close-cart-drawer] {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
}

@media (min-width: 861px) {
  .commerce-cart-drawer {
    display: block;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(520px, calc(100vw - 28px));
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    padding: 18px 18px max(18px, env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-padding-top: 86px;
    scroll-padding-bottom: calc(136px + env(safe-area-inset-bottom));
    scrollbar-color: rgba(200, 169, 102, 0.52) rgba(26, 26, 26, 0.06);
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .commerce-cart-drawer::-webkit-scrollbar {
    width: 8px;
  }

  .commerce-cart-drawer::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.06);
    border-radius: 999px;
  }

  .commerce-cart-drawer::-webkit-scrollbar-thumb {
    background: rgba(200, 169, 102, 0.52);
    border-radius: 999px;
  }

  .siren-domain-page .commerce-cart-drawer::-webkit-scrollbar-track {
    background: rgba(247, 244, 239, 0.08);
  }

  .siren-domain-page .commerce-cart-drawer::-webkit-scrollbar-thumb {
    background: rgba(214, 192, 142, 0.58);
  }

  .commerce-cart-drawer > [data-cart-panel] {
    display: grid;
    align-self: stretch;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow-x: visible;
    overflow-y: visible;
    overscroll-behavior: auto;
    padding-right: 0;
    padding-bottom: calc(136px + env(safe-area-inset-bottom));
    scroll-padding-top: 88px;
    scroll-padding-bottom: calc(136px + env(safe-area-inset-bottom));
    scrollbar-gutter: auto;
    touch-action: auto;
  }

  .commerce-cart-drawer[data-cart-scroll-region] {
    outline: none;
    overflow-y: auto;
    scroll-behavior: smooth;
  }

  .commerce-cart-drawer[data-cart-scroll-region]:focus-visible {
    box-shadow:
      inset 0 0 0 2px rgba(200, 169, 102, 0.34),
      inset 0 -24px 28px -34px rgba(7, 16, 20, 0.38);
  }

  .commerce-cart-drawer > .commerce-cart-card[data-cart-panel] {
    overflow-x: visible;
    overflow-y: visible;
  }

  .commerce-cart-drawer .commerce-checkout-action-dock {
    position: sticky;
    z-index: 10;
    top: 0;
    bottom: auto;
  }

  .commerce-floating-cart-shell.is-drawer-open {
    top: 18px;
    right: 86px;
    bottom: auto;
  }
}

@media (max-width: 860px) {
  .commerce-cart-drawer[data-cart-scroll-region] {
    display: block;
    height: 100dvh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scroll-padding-top: calc(70px + env(safe-area-inset-top));
    scroll-padding-bottom: calc(154px + env(safe-area-inset-bottom));
    scrollbar-gutter: stable;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .commerce-cart-drawer[data-cart-scroll-region] > [data-cart-panel] {
    display: grid;
    min-height: auto;
    overflow: visible;
    padding-bottom: calc(154px + env(safe-area-inset-bottom));
  }

  .commerce-floating-cart-shell.is-visible {
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-purchase-row::after,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-available .commerce-product-meta::after {
    opacity: 0 !important;
    transform: none !important;
  }

  .commerce-product-grid.is-focused-shop-grid [data-focused-product-visual] img {
    transform: none !important;
  }

  .commerce-product-grid.is-focused-shop-grid [data-focused-product-visual]::after {
    opacity: 0.18 !important;
  }

  .commerce-product-card:hover,
  .commerce-product-card:focus-within,
  .commerce-product-card:hover .commerce-product-visual img,
  .commerce-product-card:focus-within .commerce-product-visual img,
  .commerce-image-controls button:hover img,
  .commerce-image-controls button:focus-visible img,
  .commerce-image-controls button[aria-pressed="true"] img,
  .commerce-product-card:hover .commerce-fit-path img,
  .commerce-product-card:focus-within .commerce-fit-path img,
  .commerce-return-visual:hover::before,
  .commerce-return-visual:focus-within::before,
  .commerce-return-visual:hover img,
  .commerce-return-visual:focus-within img,
  .commerce-hero-preview-card:hover img,
  .commerce-hero-preview-card:focus-within img,
  .commerce-hero-preview-actions button:hover,
  .commerce-hero-preview-actions button:focus-visible,
  .commerce-hero-brand-card:hover,
  .commerce-hero-brand-card:focus-visible,
  .commerce-hero-brand-card:hover > img.commerce-hero-brand-primary,
  .commerce-hero-brand-card:focus-visible > img.commerce-hero-brand-primary,
  .commerce-hero-brand-card:hover .commerce-hero-brand-collage img,
  .commerce-hero-brand-card:focus-visible .commerce-hero-brand-collage img,
  .commerce-hero-brand-card:hover .commerce-hero-brand-collage img + img,
  .commerce-hero-brand-card:focus-visible .commerce-hero-brand-collage img + img,
  .commerce-hero-brand-card:hover .commerce-hero-brand-entry,
  .commerce-hero-brand-card:focus-visible .commerce-hero-brand-entry,
  .commerce-shop-board:hover img,
  .commerce-shop-board:focus-within img,
  .commerce-checkout-handoff:hover::before,
  .commerce-checkout-handoff:focus-within::before,
  .commerce-checkout-handoff:hover img,
  .commerce-checkout-handoff:focus-within img,
  .commerce-fit-atlas:hover::before,
  .commerce-fit-atlas:focus-within::before,
  .commerce-fit-atlas:hover img,
  .commerce-fit-atlas:focus-within img,
  .commerce-brand-compass-card:hover .commerce-brand-compass-primary,
  .commerce-brand-compass-card:focus-visible .commerce-brand-compass-primary,
  .commerce-set-builder:hover .commerce-set-builder-visual img,
  .commerce-set-builder:focus-within .commerce-set-builder-visual img,
  .commerce-group-gateway-look:hover img,
  .commerce-group-gateway-look:focus-visible img,
  .commerce-group-confidence:hover img,
  .commerce-group-confidence:focus-within img,
  .commerce-policy-confidence:hover .commerce-policy-visual img,
  .commerce-policy-confidence:focus-within .commerce-policy-visual img,
  .commerce-shop-path-card:hover img,
  .commerce-shop-path-card:focus-visible img,
  .commerce-product-lineup-card:hover img,
  .commerce-product-lineup-card:focus-visible img,
  .commerce-style-board-main:hover img,
  .commerce-style-board-main:focus-within img,
  .commerce-style-board-tile:hover img,
  .commerce-style-board-tile:focus-visible img,
  .commerce-pdp-passport-primary:hover img,
  .commerce-pdp-passport-primary:focus-within img,
  .commerce-pdp-passport-tile:hover img,
  .commerce-pdp-passport-tile:focus-visible img,
  .commerce-empty-bag-card:hover img,
  .commerce-empty-bag-card:focus-visible img,
  .commerce-filter-bar button:hover .commerce-filter-visual img,
  .commerce-filter-bar button:focus-visible .commerce-filter-visual img,
  .commerce-filter-bar button[aria-pressed="true"] .commerce-filter-visual img,
  .commerce-shore-journey-card:hover img,
  .commerce-shore-journey-card:focus-visible img,
  .commerce-social-reel-track figure:hover img,
  .commerce-social-reel-track figure:focus-within img,
  .commerce-social-reel-track a:hover img,
  .commerce-social-reel-track a:focus-visible img,
  .commerce-auth-visual:hover img,
  .commerce-auth-visual:focus-within img,
  .commerce-moment-card img,
  .commerce-moment-card:hover img,
  .commerce-moment-card:focus-visible img,
  .commerce-image-hotspots button:hover,
  .commerce-image-hotspots button:focus-visible,
  .commerce-product-detail-cue:hover,
  .commerce-product-detail-cue:focus-visible,
  .commerce-visual-action-tray button:hover,
  .commerce-visual-action-tray button:focus-visible,
  .commerce-visual-action-tray a:hover,
  .commerce-visual-action-tray a:focus-visible,
  .commerce-glance-rail button:hover img,
  .commerce-glance-rail button:focus-visible img,
  .commerce-glance-rail a:hover img,
  .commerce-glance-rail a:focus-visible img,
  .commerce-cart-visual-summary:hover figure img,
  .commerce-cart-visual-summary:focus-within figure img,
  .commerce-size-map-row button:hover,
  .commerce-size-map-row button:focus-visible,
  .commerce-tide-visual-card:hover img,
  .commerce-tide-visual-card:focus-within img,
  .commerce-fit-finder-card:hover img,
  .commerce-fit-finder-card:focus-visible img,
  .commerce-lookbook-card:hover img,
  .commerce-lookbook-card:focus-visible img,
  .commerce-lookbook-viewer,
  [data-add-to-cart].is-added-to-cart,
  [data-add-to-cart].is-added-to-cart .commerce-icon,
  .commerce-cart-drawer-shell.is-cart-catching .commerce-cart-drawer,
  .commerce-cart-drawer-shell.is-cart-catching .commerce-cart-item img,
  .commerce-account-choice label:hover,
  .commerce-account-choice label:focus-within,
  .commerce-checkout-runway-card:hover,
  .commerce-checkout-runway-card:focus-visible,
  .commerce-policy-card:hover,
  .commerce-policy-card:focus-visible {
    transform: none;
  }

  .commerce-cart-flyout {
    display: none;
  }

  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:hover,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:focus-visible,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:hover > img.commerce-hero-brand-primary,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:focus-visible > img.commerce-hero-brand-primary,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:hover .commerce-hero-brand-collage img,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:focus-visible .commerce-hero-brand-collage img,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:hover .commerce-hero-brand-collage img + img,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:focus-visible .commerce-hero-brand-collage img + img,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:hover .commerce-hero-brand-entry,
  body:not(.brand-domain-page):has([data-brand="group"][data-commerce-page="shop"]) .commerce-store-hero .commerce-hero-brand-card:focus-visible .commerce-hero-brand-entry {
    transform: none !important;
  }
}

.fit-onboarding-page {
  background:
    linear-gradient(180deg, rgba(19, 47, 51, 0.06), rgba(247, 244, 239, 0.92) 38%),
    var(--paper);
}

.fit-onboarding-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 70px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: 48px;
  padding: clamp(42px, 7vw, 92px) 6.5vw 40px;
  overflow: hidden;
  color: #fffdf8;
  background: #132f33;
}

.fit-onboarding-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(19, 47, 51, 0.82));
}

.fit-onboarding-visual {
  position: absolute;
  inset: 0;
  opacity: 0.58;
}

.fit-onboarding-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fit-onboarding-copy,
.fit-onboarding-progress {
  position: relative;
  z-index: 1;
}

.fit-onboarding-copy {
  max-width: 760px;
}

.fit-onboarding-copy .eyebrow {
  color: rgba(255, 253, 248, 0.78);
}

.fit-onboarding-copy h1 {
  max-width: 760px;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 8vw, 7.6rem);
  font-weight: 500;
  line-height: 0.86;
}

.fit-onboarding-copy .lede {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.fit-onboarding-progress {
  align-self: center;
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
  padding: 16px;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.22);
  backdrop-filter: blur(20px);
}

.fit-onboarding-progress span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  color: rgba(255, 253, 248, 0.66);
  border: 1px solid rgba(255, 253, 248, 0.16);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-onboarding-progress span::after {
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
}

.fit-onboarding-progress span[data-state="active"],
.fit-onboarding-progress span[data-state="complete"] {
  color: #171717;
  background: var(--champagne);
  border-color: var(--champagne);
}

.fit-onboarding-progress span[data-state="complete"]::after {
  background: #171717;
}

.fit-onboarding-shell {
  display: grid;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0;
}

.fit-onboarding-status {
  min-height: 24px;
  color: var(--smoke);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.fit-onboarding-status[data-tone="success"] {
  color: #2f6b45;
}

.fit-onboarding-status[data-tone="error"] {
  color: #8f342c;
}

.fit-onboarding-card {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(26, 26, 26, 0.12);
  box-shadow: 0 24px 70px rgba(26, 26, 26, 0.08);
}

.fit-onboarding-card h2 {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  font-weight: 500;
  line-height: 0.98;
}

.fit-onboarding-card h3 {
  color: var(--teal);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-onboarding-card p {
  max-width: 780px;
  color: var(--smoke);
}

.fit-onboarding-auth,
.fit-onboarding-review {
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.55fr);
  align-items: start;
}

.fit-onboarding-auth {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.62)),
    rgba(255, 253, 248, 0.88);
}

.fit-onboarding-auth-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.fit-onboarding-trust-list {
  display: grid;
  gap: 8px;
  max-width: 540px;
  margin-top: 8px;
}

.fit-onboarding-trust-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fit-onboarding-trust-list span::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--champagne);
}

.fit-onboarding-form {
  display: grid;
  gap: 18px;
}

.fit-onboarding-form-kicker,
.fit-onboarding-form-note {
  margin: 0;
  color: var(--smoke);
  font-size: 0.8rem;
  line-height: 1.6;
}

.fit-onboarding-form-kicker {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-onboarding-form label:not(.fit-consent-choice) {
  display: grid;
  gap: 8px;
  color: var(--smoke);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fit-onboarding-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(247, 244, 239, 0.9);
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 0;
  font: inherit;
  letter-spacing: 0;
}

.fit-onboarding-form input:focus-visible,
.fit-consent-choice:focus-within {
  outline: 2px solid rgba(200, 169, 102, 0.7);
  outline-offset: 3px;
}

.fit-onboarding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.fit-onboarding-actions button,
.fit-onboarding-actions .button {
  min-height: 46px;
  padding: 13px 18px;
  color: #171717;
  background: var(--champagne);
  border: 1px solid var(--champagne);
  border-radius: 0;
  font: 700 0.72rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.fit-onboarding-actions button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(26, 26, 26, 0.24);
}

.fit-onboarding-actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.fit-onboarding-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.1);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.fit-onboarding-summary div {
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.92);
}

.fit-onboarding-summary span {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-onboarding-summary strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.fit-onboarding-packet-intro {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  align-items: end;
  background:
    linear-gradient(120deg, rgba(19, 47, 51, 0.95), rgba(30, 83, 88, 0.9)),
    var(--teal);
  color: #fffdf8;
}

.fit-onboarding-packet-intro .eyebrow,
.fit-onboarding-packet-intro p {
  color: rgba(255, 253, 248, 0.78);
}

.fit-onboarding-packet-intro h2 {
  color: #fffdf8;
}

.fit-onboarding-packet-facts {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.2);
  background: rgba(255, 253, 248, 0.16);
}

.fit-onboarding-packet-facts div {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.08);
}

.fit-onboarding-packet-facts dt {
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-onboarding-packet-facts dd {
  margin: 0;
  color: #fffdf8;
  font-size: 0.95rem;
}

.fit-section-head {
  display: grid;
  gap: 10px;
}

.fit-onboarding-legal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fit-onboarding-legal article {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 18px;
  background: rgba(216, 226, 223, 0.5);
  border: 1px solid rgba(19, 57, 61, 0.18);
}

.fit-onboarding-legal article h3,
.fit-onboarding-legal article p {
  margin: 0;
}

.fit-onboarding-legal article h3 {
  margin-bottom: 8px;
}

.fit-onboarding-legal article p {
  color: #36575b;
  font-size: 0.88rem;
}

.fit-onboarding-consents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fit-onboarding-consent-stage {
  gap: 28px;
}

.fit-consent-section {
  display: grid;
  gap: 12px;
}

.fit-consent-section > h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.fit-consent-section--featured {
  padding: 0;
  background: transparent;
  border: 0;
}

.fit-onboarding-preference-group {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  min-width: 0;
}

.fit-onboarding-preference-heading {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}

.fit-onboarding-preference-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fit-consent-choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 68px;
  padding: 16px;
  background: rgba(247, 244, 239, 0.74);
  border: 1px solid rgba(26, 26, 26, 0.12);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.fit-consent-choice--preference {
  position: relative;
  min-height: 68px;
  align-items: start;
  padding: 16px;
  background: rgba(247, 244, 239, 0.74);
  border-color: rgba(26, 26, 26, 0.12);
  box-shadow: none;
}

.fit-consent-choice--preference[data-selected="true"] {
  background: rgba(247, 244, 239, 0.9);
  border-color: rgba(19, 57, 61, 0.34);
  box-shadow: none;
}

.fit-consent-choice--preference[data-selected="true"]::after {
  display: none;
}

.fit-consent-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.fit-onboarding-sign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fit-onboarding-complete {
  min-height: 420px;
  align-content: center;
  background:
    linear-gradient(120deg, rgba(216, 226, 223, 0.72), rgba(255, 253, 248, 0.94)),
    rgba(255, 253, 248, 0.9);
}

@media (max-width: 980px) {
  .fit-onboarding-hero,
  .fit-onboarding-auth,
  .fit-onboarding-review,
  .fit-onboarding-packet-intro {
    grid-template-columns: 1fr;
  }

  .fit-onboarding-hero {
    align-items: end;
    min-height: 760px;
  }

  .fit-onboarding-progress {
    align-self: end;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fit-onboarding-progress span {
    justify-content: center;
    min-height: 42px;
    padding: 0 8px;
  }

  .fit-onboarding-progress span::after {
    display: none;
  }

  .fit-onboarding-legal,
  .fit-onboarding-consents,
  .fit-onboarding-preference-options,
  .fit-onboarding-packet-facts,
  .fit-onboarding-sign-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .fit-onboarding-hero {
    min-height: 680px;
    padding: 32px 18px 24px;
  }

  .fit-onboarding-copy h1 {
    font-size: clamp(3rem, 17vw, 4.2rem);
  }

  .fit-onboarding-progress {
    gap: 6px;
    padding: 8px;
  }

  .fit-onboarding-progress span {
    min-height: 38px;
    font-size: 0.58rem;
  }

  .fit-onboarding-shell {
    width: calc(100% - 28px);
    padding: 32px 0 52px;
  }

  .fit-onboarding-card {
    padding: 22px;
  }

  .fit-onboarding-packet-intro {
    gap: 22px;
  }

  .fit-consent-section--featured {
    padding: 0;
  }

  .fit-consent-choice--preference {
    min-height: 68px;
    padding: 16px;
  }

  .fit-onboarding-summary {
    grid-template-columns: 1fr;
  }

  .fit-onboarding-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fit-onboarding-actions button,
  .fit-onboarding-actions .button {
    width: 100%;
    text-align: center;
  }
}

.employee-portal-page {
  min-height: calc(100vh - 70px);
  background:
    linear-gradient(180deg, rgba(216, 226, 223, 0.64), rgba(247, 244, 239, 0.96) 280px),
    var(--paper);
}

.employee-portal-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 76px;
}

.employee-portal-frame {
  display: grid;
  gap: 20px;
}

.employee-portal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 24px;
  align-items: end;
  padding: clamp(24px, 4vw, 44px);
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(19, 47, 51, 0.98), rgba(42, 86, 88, 0.92)),
    var(--teal);
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.employee-portal-head .eyebrow,
.employee-portal-head .lede {
  color: rgba(255, 253, 248, 0.78);
}

.employee-portal-head h1 {
  max-width: 760px;
  margin-top: 10px;
  color: #fffdf8;
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 0.92;
}

.employee-portal-head .lede {
  max-width: 660px;
  margin-top: 18px;
  line-height: 1.75;
}

.employee-portal-status {
  min-height: 54px;
  margin: 0;
  padding: 14px 16px;
  color: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(255, 253, 248, 0.24);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.employee-portal-status[data-tone="success"] {
  color: #171717;
  background: var(--champagne);
  border-color: var(--champagne);
}

.employee-portal-status[data-tone="error"] {
  color: #fffdf8;
  background: rgba(143, 52, 44, 0.86);
  border-color: rgba(143, 52, 44, 0.9);
}

.employee-portal-auth,
.employee-portal-card {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(26, 26, 26, 0.12);
  box-shadow: 0 22px 62px rgba(26, 26, 26, 0.08);
}

.employee-portal-auth {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.5fr);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(216, 226, 223, 0.66)),
    rgba(255, 253, 248, 0.9);
}

.employee-portal-auth-copy,
.employee-portal-form,
.employee-portal-card-head {
  display: grid;
  gap: 14px;
}

.employee-portal-auth h2,
.employee-portal-card h2,
.employee-portal-loading h2 {
  max-width: 720px;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
}

.employee-portal-auth p,
.employee-portal-card p,
.employee-portal-loading p {
  max-width: 760px;
  color: var(--smoke);
}

.employee-portal-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.employee-portal-assurance span {
  padding: 8px 10px;
  color: var(--teal);
  background: rgba(216, 226, 223, 0.72);
  border: 1px solid rgba(19, 57, 61, 0.12);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.employee-portal-form label {
  display: grid;
  gap: 8px;
  color: var(--smoke);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.employee-portal-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(247, 244, 239, 0.92);
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 0;
  font: inherit;
  letter-spacing: 0;
}

.employee-portal-form input:focus-visible {
  outline: 2px solid rgba(200, 169, 102, 0.7);
  outline-offset: 3px;
}

.employee-portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.employee-portal-actions button,
.employee-portal-actions .button {
  min-height: 46px;
  padding: 13px 18px;
  color: #171717;
  background: var(--champagne);
  border: 1px solid var(--champagne);
  border-radius: 0;
  font: 700 0.72rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.employee-portal-actions button.secondary,
.employee-portal-actions .button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(26, 26, 26, 0.24);
}

.employee-portal-actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.employee-portal-note {
  margin: 0;
  color: var(--smoke);
  font-size: 0.78rem;
  line-height: 1.6;
}

.employee-portal-dashboard {
  display: grid;
  gap: 18px;
}

.employee-portal-userbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.employee-portal-userbar span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.employee-portal-userbar button {
  min-height: 38px;
  padding: 10px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.24);
  font: 700 0.68rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.employee-portal-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.employee-portal-metric {
  display: grid;
  gap: 9px;
  min-height: 148px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.06);
}

.employee-portal-metric[data-tone="active"] {
  border-color: rgba(184, 145, 76, 0.38);
}

.employee-portal-metric[data-tone="success"] {
  background:
    linear-gradient(135deg, rgba(216, 226, 223, 0.72), rgba(255, 253, 248, 0.94)),
    rgba(255, 253, 248, 0.88);
  border-color: rgba(47, 107, 69, 0.28);
}

.employee-portal-metric > span,
.employee-portal-details span {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.employee-portal-metric strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.05;
}

.employee-portal-metric small {
  color: var(--smoke);
  font-size: 0.8rem;
  line-height: 1.55;
}

.employee-portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.employee-portal-card--wide,
.employee-portal-card--next {
  grid-column: 1 / -1;
}

.employee-portal-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.1);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.employee-portal-details div {
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.92);
}

.employee-portal-details strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.employee-portal-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: portal-step;
}

.employee-portal-steps li {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 18px 18px 18px 54px;
  background: rgba(216, 226, 223, 0.48);
  border: 1px solid rgba(19, 57, 61, 0.14);
  counter-increment: portal-step;
}

.employee-portal-steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 24px;
  height: 24px;
  color: #171717;
  content: counter(portal-step);
  background: var(--champagne);
  border-radius: 50%;
  font: 800 0.72rem/24px var(--sans);
  text-align: center;
}

.employee-portal-steps strong {
  color: var(--teal);
  font-size: 0.84rem;
}

.employee-portal-steps span {
  color: var(--smoke);
  font-size: 0.84rem;
  line-height: 1.6;
}

.employee-portal-records {
  display: grid;
  gap: 8px;
}

.employee-portal-record {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px;
  background: rgba(247, 244, 239, 0.74);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.employee-portal-record strong,
.employee-portal-record span,
.employee-portal-record a {
  min-width: 0;
  color: var(--ink);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.employee-portal-record span {
  color: var(--smoke);
}

.employee-portal-record a {
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
}

.employee-portal-card--empty {
  min-height: 360px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(216, 226, 223, 0.58)),
    rgba(255, 253, 248, 0.9);
}

@media (max-width: 980px) {
  .employee-portal-head,
  .employee-portal-auth,
  .employee-portal-grid {
    grid-template-columns: 1fr;
  }

  .employee-portal-head h1 {
    font-size: 3.2rem;
  }

  .employee-portal-status {
    min-height: 0;
  }

  .employee-portal-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .employee-portal-steps {
    grid-template-columns: 1fr;
  }

  .employee-portal-record {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .employee-portal-shell {
    width: calc(100% - 28px);
    padding: 28px 0 52px;
  }

  .employee-portal-head,
  .employee-portal-auth,
  .employee-portal-card {
    padding: 22px;
  }

  .employee-portal-head h1,
  .employee-portal-auth h2,
  .employee-portal-card h2,
  .employee-portal-loading h2 {
    font-size: 2.35rem;
  }

  .employee-portal-metrics,
  .employee-portal-details {
    grid-template-columns: 1fr;
  }

  .employee-portal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .employee-portal-actions button,
  .employee-portal-actions .button {
    width: 100%;
  }

  .employee-portal-userbar {
    align-items: stretch;
    flex-direction: column;
  }
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add {
  display: grid;
  min-width: 0;
  gap: 8px;
  align-self: center;
}

.commerce-focused-quick-add-summary {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 54px;
  padding: 8px 12px 8px 8px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(216, 226, 223, 0.3)),
    rgba(255, 253, 248, 0.7);
  box-shadow:
    0 18px 42px rgba(26, 26, 26, 0.08),
    inset 0 1px 0 rgba(255, 253, 248, 0.68);
  cursor: pointer;
  list-style: none;
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.commerce-focused-quick-add-summary::-webkit-details-marker {
  display: none;
}

.commerce-focused-quick-add-summary::after {
  position: absolute;
  inset: -80% auto -80% -36%;
  width: 32%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.62), transparent);
  opacity: 0;
  transform: translateX(-120%) skewX(-14deg);
}

.siren-domain-page .commerce-focused-quick-add-summary {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.1), rgba(214, 192, 142, 0.09)),
    rgba(7, 16, 20, 0.42);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(247, 244, 239, 0.1);
}

.siren-domain-page .commerce-focused-quick-add-summary::after {
  background: linear-gradient(90deg, transparent, rgba(226, 196, 128, 0.42), transparent);
}

.commerce-focused-quick-add-summary:hover,
.commerce-focused-quick-add-summary:focus-visible,
.commerce-focused-quick-add[open] .commerce-focused-quick-add-summary {
  border-color: rgba(200, 169, 102, 0.5);
  box-shadow:
    0 22px 52px rgba(26, 26, 26, 0.12),
    inset 0 1px 0 rgba(255, 253, 248, 0.7);
  transform: translateY(-1px);
}

.siren-domain-page .commerce-focused-quick-add-summary:hover,
.siren-domain-page .commerce-focused-quick-add-summary:focus-visible,
.siren-domain-page .commerce-focused-quick-add[open] .commerce-focused-quick-add-summary {
  border-color: rgba(226, 196, 128, 0.42);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(247, 244, 239, 0.14);
}

.commerce-focused-quick-add-summary:hover::after,
.commerce-focused-quick-add-summary:focus-visible::after {
  animation: commerce-dock-sheen 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.commerce-focused-quick-add-summary span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 94, 100, 0.1);
  color: var(--teal);
}

.siren-domain-page .commerce-focused-quick-add-summary span {
  background: rgba(226, 196, 128, 0.14);
  color: var(--champagne);
}

.commerce-focused-quick-add-summary .commerce-icon {
  width: 15px;
  height: 15px;
}

.commerce-focused-quick-add-summary strong,
.commerce-focused-quick-add-summary em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-focused-quick-add-summary strong {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.commerce-focused-quick-add-summary em {
  justify-self: end;
  color: var(--smoke);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.siren-domain-page .commerce-focused-quick-add-summary em {
  color: rgba(247, 244, 239, 0.78);
}

.commerce-focused-quick-add-panel {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.commerce-focused-quick-add:not([open]) .commerce-focused-quick-add-panel {
  display: none;
}

.commerce-focused-quick-add[open] .commerce-focused-quick-add-summary {
  border-radius: 16px 16px 10px 10px;
}

.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add-panel .commerce-purchase-row,
.commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add-panel .commerce-product-meta {
  margin-top: 0;
}

@media (min-width: 861px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:not(:has(.commerce-focused-quick-add[open])) .commerce-product-body {
    align-content: center;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:not(:has(.commerce-focused-quick-add[open])) .commerce-product-copy {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add {
    width: min(100%, 340px);
    justify-self: center;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] {
    width: min(100%, 380px);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-purchase-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(216, 226, 223, 0.24)),
      rgba(255, 253, 248, 0.62);
    box-shadow:
      0 18px 42px rgba(26, 26, 26, 0.1),
      inset 0 1px 0 rgba(255, 253, 248, 0.62);
  }

  .siren-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-purchase-row {
    border-color: rgba(247, 244, 239, 0.16);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(214, 192, 142, 0.08)),
      rgba(7, 16, 20, 0.36);
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(247, 244, 239, 0.1);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-set-picker-cue {
    display: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-size-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-size-control {
    min-height: 44px;
    padding-left: 34px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-size-options,
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-size-control:has(.commerce-size-option[data-sold-out="false"]) .commerce-size-options {
    grid-template-columns: repeat(5, minmax(42px, 1fr));
    gap: 4px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-size-option {
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 7px 4px;
    text-align: center;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-size-option input {
    z-index: 3;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-quantity-control {
    justify-self: start;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-product-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add[open] .commerce-product-action {
    width: 100%;
    min-height: 50px;
    justify-self: stretch;
  }
}

@media (max-width: 860px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add) .commerce-product-body {
    display: grid;
    align-content: end;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary .commerce-focused-quick-add {
    width: 100%;
    align-self: end;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:not(:has(.commerce-focused-quick-add[open])) .commerce-product-body {
    padding: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:not(:has(.commerce-focused-quick-add[open])) .commerce-focused-quick-add-summary {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas:
      "icon label"
      "icon price";
    gap: 2px 8px;
    min-height: 64px;
    border-radius: 16px;
    padding: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:not(:has(.commerce-focused-quick-add[open])) .commerce-focused-quick-add-summary span {
    grid-area: icon;
    width: 34px;
    height: 34px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:not(:has(.commerce-focused-quick-add[open])) .commerce-focused-quick-add-summary strong {
    grid-area: label;
    align-self: end;
    font-size: 0.6rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:not(:has(.commerce-focused-quick-add[open])) .commerce-focused-quick-add-summary em {
    grid-area: price;
    justify-self: start;
    font-size: 0.68rem;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add[open]) {
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add[open]) .commerce-product-visual {
    min-height: 292px;
    border-radius: 7px 7px 0 0;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add[open]) .commerce-product-body {
    padding: 10px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add[open]) .commerce-focused-quick-add-summary {
    min-height: 48px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add[open]) .commerce-purchase-row {
    margin: 0;
  }
}

@media (min-width: 861px) {
  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) {
    position: relative;
    isolation: isolate;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) .commerce-product-visual {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 7px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) .commerce-secondary-product-strip-track {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) .commerce-secondary-product-frame:first-child {
    grid-row: auto;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) .commerce-product-body {
    position: relative;
    z-index: 4;
    grid-area: 1 / 1;
    align-content: end;
    justify-items: end;
    align-self: stretch;
    padding: clamp(18px, 2.2vw, 28px);
    pointer-events: none;
    background:
      linear-gradient(90deg, transparent 0%, transparent 48%, rgba(9, 17, 20, 0.34) 100%),
      linear-gradient(180deg, transparent 44%, rgba(9, 17, 20, 0.48) 100%);
  }

  .angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) .commerce-product-body {
    background:
      linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255, 253, 248, 0.38) 100%),
      linear-gradient(180deg, transparent 48%, rgba(70, 55, 45, 0.16) 100%);
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) .commerce-focused-quick-add {
    width: min(100%, 360px);
    align-self: end;
    justify-self: end;
    pointer-events: auto;
  }

  .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) .commerce-focused-quick-add-summary {
    min-height: 56px;
    border-color: rgba(255, 253, 248, 0.2);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 253, 248, 0.12);
  }

  .angel-domain-page .commerce-product-grid.is-focused-shop-grid .commerce-product-card.is-shop-secondary:has(.commerce-focused-quick-add):not(:has(.commerce-focused-quick-add[open])) .commerce-focused-quick-add-summary {
    border-color: rgba(70, 55, 45, 0.12);
    box-shadow:
      0 22px 54px rgba(70, 55, 45, 0.16),
      inset 0 1px 0 rgba(255, 253, 248, 0.62);
  }
}
