@font-face {
  font-family: 'Neue Haas Unica';
  src: url('./fonts/NeueHaasUnicaPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Unica';
  src: url('./fonts/NeueHaasUnicaPro-Medium.ttf') format('truetype');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Unica';
  src: url('./fonts/NeueHaasUnicaPro-Bold.ttf') format('truetype');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RedHatText';
  src: url('./fonts/RedHatText-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SansSerifFLF';
  src: url('./fonts/SansSerifBookFLF.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SansSerifFLF';
  src: url('./fonts/SansSerifFLF-Demibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #10100f;
  --muted: #6f6a62;
  --paper: #f4f0e8;
  --ivory: #fbfaf6;
  --line: #d8d1c6;
  --black: #050505;
  --accent: #8b6e4f;
  --product-surface: #d0d0c8;
  --max: 1180px;
  --font-primary: 'Neue Haas Unica', 'Neue-Haas-Unica', 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-primary);
  letter-spacing: 0.01em;
}

body:not(.admin-unlocked) {
  min-height: 100svh;
  overflow: hidden;
}

body:not(.admin-unlocked) .admin-only,
body:not(.admin-unlocked) main>section:not(.public-gate) {
  display: none;
}

body:not(.admin-unlocked) .site-header,
body:not(.admin-unlocked) .site-footer {
  display: none;
}

body.admin-unlocked .public-gate {
  display: none;
}

body.admin-unlocked,
body.admin-unlocked * {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.public-gate {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  min-height: 100svh;
  background: #fbfaf6;
  color: var(--ink);
}

.public-gate__left {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 56px);
  height: 100svh;
  overflow: hidden;
}

.public-gate__right {
  position: relative;
  height: 100svh;
  background: var(--ink);
  overflow: hidden;
}

.public-gate__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.85) contrast(1.1);
}

@media (min-width: 1600px) {
  body:not(.admin-unlocked) .public-gate {
    grid-template-columns: minmax(0, 1.22fr) minmax(560px, 0.78fr);
  }

  body:not(.admin-unlocked) .public-gate__right img {
    object-position: 50% 24%;
  }
}

.public-gate__topbar {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 42px);
  right: clamp(18px, 3vw, 42px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.public-gate__brand {
  font-family: var(--font-primary);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.admin-menu-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.admin-menu-button span {
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.public-gate__center {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --- ENTRANCE ANIMATIONS --- */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.public-gate__center>* {
  opacity: 0;
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.public-gate__logo {
  animation-delay: 0.1s;
}

.public-gate__eyebrow {
  animation-delay: 0.2s;
}

.public-gate h1 {
  animation-delay: 0.3s;
}

.public-gate__center>p:not(.public-gate__eyebrow):not(.public-gate__fomo) {
  animation-delay: 0.4s;
}

.public-gate__products {
  animation-delay: 0.5s;
}

.public-gate__fomo {
  animation-delay: 0.6s;
}

.public-waitlist-form {
  animation-delay: 0.7s;
}



.public-gate__logo {
  width: clamp(142px, 16vw, 205px);
  object-fit: contain;
  margin-bottom: 14px;
  filter: contrast(1.06);
}

.public-gate__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.public-gate__eyebrow::before,
.public-gate__eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(139, 110, 79, 0.42);
}

.public-gate h1 {
  max-width: 520px;
  margin: 0 0 10px;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 600;
}

.public-gate p:not(.public-gate__eyebrow) {
  max-width: 430px;
  margin: 0 0 24px;
  color: rgba(16, 16, 15, 0.64);
  font-size: 15px;
  line-height: 1.45;
}

.public-waitlist-form {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  border: 1px solid rgba(16, 16, 15, 0.28);
  background: rgba(251, 250, 246, 0.82);
  box-shadow: 0 28px 90px rgba(16, 16, 15, 0.08);
}

.public-gate__trust {
  margin-top: clamp(22px, 3vw, 34px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
  padding-top: 22px;
}

.trust-group p {
  margin: 0 0 6px 0 !important;
  font-size: 12px !important;
  color: var(--ink) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-group p.trust-muted {
  color: rgba(16, 16, 15, 0.5) !important;
}

.trust-group strong {
  font-weight: 600;
  font-family: var(--font-primary);
  letter-spacing: 0.1em;
}

.public-waitlist-form input,
.public-waitlist-form button,
.admin-code-panel input,
.admin-code-panel button {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.public-waitlist-form input {
  min-width: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
}

.public-waitlist-form button,
.admin-code-panel button {
  padding: 0 18px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.public-waitlist-form button:hover {
  background: #2a2a2a;
}

.public-waitlist-form button:active {
  transform: scale(0.96);
}

.public-waitlist-form button:disabled {
  background: #888;
  cursor: not-allowed;
}

.admin-code-panel[hidden] {
  display: none;
}

.admin-code-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-code-panel__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.28);
  backdrop-filter: blur(10px);
}

.admin-code-panel__box {
  position: relative;
  width: min(340px, 100%);
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(16, 16, 15, 0.14);
  background: var(--ivory);
  box-shadow: 0 24px 80px rgba(16, 16, 15, 0.16);
}

.admin-code-panel__box p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 24px;
}

.admin-code-panel input {
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.admin-code-panel span {
  min-height: 16px;
  color: #8a2f1a;
  font-size: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(244, 240, 232, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

.brand-wordmark,
.footer-brand {
  font-family: var(--font-primary);
  font-size: 24px;
  line-height: 1;
}

.site-nav,
.footer-links {
  display: flex;
  gap: 18px;
  font-size: 11px;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 82px clamp(18px, 5vw, 72px) 44px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% center;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.24) 42%, rgba(5, 5, 5, 0.72) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.26) 0%, rgba(5, 5, 5, 0.04) 46%, rgba(5, 5, 5, 0.22) 100%);
}

.hero-copy {
  width: min(600px, 100%);
  margin-left: auto;
  color: var(--ivory);
  padding: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(58px, 8.6vw, 118px);
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 80px);
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

p {
  line-height: 1.6;
}

.hero-copy>p:not(.eyebrow),
.section-heading,
.process-copy,
.lookbook-copy,
.waitlist-panel p {
  color: var(--muted);
  font-size: 16px;
}

.hero-copy>p:not(.eyebrow) {
  color: rgba(251, 250, 246, 0.82);
}

.hero-actions,
.signup-form,
.product-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(251, 250, 246, 0.28);
  color: rgba(251, 250, 246, 0.82);
  font-size: 11px;
  text-transform: uppercase;
  background: rgba(16, 16, 15, 0.24);
  backdrop-filter: blur(12px);
}

.hero-status {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: 28px;
  margin: 0;
  color: rgba(251, 250, 246, 0.74);
  font-size: 12px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 12px;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  background: var(--ink);
  color: var(--ivory);
}

.hero-copy .button-primary {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.hero-copy .button-secondary {
  color: var(--ivory);
  border-color: rgba(251, 250, 246, 0.58);
}

.button-secondary {
  background: transparent;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 124px) clamp(18px, 4vw, 40px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.product-tile {
  display: grid;
  gap: 16px;
}

.product-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #e7e1d7;
}

.tile-kicker {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.section-process {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.section-fit {
  border-top: 1px solid var(--line);
}

.fit-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.fit-cards article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.25);
}

.fit-cards span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 12px;
}

.process-steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.process-steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
}

.process-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.section-lookbook {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1px;
  align-items: stretch;
  min-height: auto;
  padding: 0;
  background: var(--ink);
  color: var(--ivory);
}

.proof-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 48px);
  background: var(--ivory);
}

.proof-board__copy {
  max-width: 470px;
  padding-bottom: 20px;
}

.proof-board__copy h2 {
  font-size: clamp(44px, 5.8vw, 86px);
}

.proof-board__copy p:not(.eyebrow) {
  color: var(--muted);
}

.proof-board__media {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  align-items: end;
}

.proof-board__media img {
  width: 100%;
  object-fit: cover;
  background: #e8e0d5;
}

.proof-board__media img:nth-child(1) {
  grid-row: span 2;
  height: 720px;
}

.proof-board__media img:nth-child(2),
.proof-board__media img:nth-child(3) {
  height: 354px;
}

.lookbook-media {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
}

.lookbook-media img {
  width: 100%;
  height: 815px;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 45%;
  background: #d9d8d4;
}

.lookbook-faq {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.lookbook-faq p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(251, 250, 246, 0.18);
}

.lookbook-faq strong,
.lookbook-faq span {
  display: block;
}

.lookbook-faq strong {
  margin-bottom: 8px;
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lookbook-faq span {
  color: rgba(251, 250, 246, 0.68);
  font-size: 13px;
  line-height: 1.58;
}

.lookbook-copy {
  align-self: center;
  width: min(560px, 100%);
  padding: clamp(34px, 5vw, 76px);
  color: #d8d1c6;
}

.lookbook-copy h2 {
  font-size: clamp(34px, 4.2vw, 64px);
}

.lookbook-copy p:not(.eyebrow) {
  color: rgba(251, 250, 246, 0.68);
  font-size: 14px;
}

.about-motion {
  max-width: none;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 46vw, 680px);
  padding: clamp(42px, 6vw, 82px) 18px;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.about-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 52%, rgba(16, 16, 15, 0.05), rgba(16, 16, 15, 0.46) 72%),
    linear-gradient(180deg, rgba(16, 16, 15, 0.22), rgba(16, 16, 15, 0.52));
}

.about-motion__copy {
  width: min(520px, calc(100% - 32px));
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--ivory);
}

.about-motion__copy .eyebrow {
  color: #fff;
}

.about-motion__copy h2 {
  margin: 0 0 clamp(18px, 2.5vw, 32px);
  color: #fff;
  font-size: clamp(54px, 10vw, 154px);
  line-height: 0.84;
  letter-spacing: 0.02em;
}

.about-motion__copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(251, 250, 246, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-motion__button {
  margin-top: clamp(24px, 3vw, 42px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.about-motion__button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about-motion__mark {
  width: clamp(42px, 5vw, 70px);
  aspect-ratio: 689 / 833;
  display: block;
  margin-bottom: clamp(18px, 3vw, 30px);
  background: #fff;
  -webkit-mask: url("detailedicon.png") center / contain no-repeat;
  mask: url("detailedicon.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28));
  opacity: 0.94;
}

.about-motion__frame {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #191816;
}

.about-motion__frame video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 46%;
  filter: saturate(0.86) contrast(1.05);
}

.section-waitlist {
  max-width: none;
  min-height: 560px;
  display: grid;
  place-items: center;
  background: var(--ivory);
}

.section-faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.waitlist-panel {
  width: min(680px, 100%);
  text-align: center;
}

.waitlist-benefits {
  display: grid;
  gap: 8px;
  width: min(520px, 100%);
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.waitlist-benefits li::before {
  content: "— ";
}

.signup-form {
  justify-content: center;
}

.signup-form input {
  min-width: min(100%, 340px);
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.form-note {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 13px 16px;
  border-top: 1px solid rgba(16, 16, 15, 0.14);
  background: rgba(251, 250, 246, 0.52);
  color: rgba(16, 16, 15, 0.7);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.form-note--success {
  color: var(--ink);
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.product-page {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 40px);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-gallery img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-info {
  position: sticky;
  top: 96px;
  align-self: start;
}

.product-price {
  font-size: 20px;
  color: var(--ink);
}

.preorder-box {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

body.admin-unlocked {
  background: var(--ivory);
  overflow-x: hidden;
}

body.admin-unlocked .site-header {
  top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  padding: 12px clamp(22px, 3vw, 44px);
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  backdrop-filter: blur(12px);
  z-index: 20;
}

body.admin-unlocked[data-shop-view="home"] .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  color: #fff;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, backdrop-filter 0.28s ease;
}

body.admin-unlocked[data-shop-view="home"] .site-nav,
body.admin-unlocked[data-shop-view="home"] .shop-actions {
  color: #fff;
  transition: color 0.28s ease;
}

body.admin-unlocked[data-shop-view="home"] .site-header:hover,
body.admin-unlocked[data-shop-view="home"] .site-header:focus-within {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  color: #fff;
}

body.admin-unlocked[data-shop-view="home"] .site-header:hover .site-nav,
body.admin-unlocked[data-shop-view="home"] .site-header:focus-within .site-nav,
body.admin-unlocked[data-shop-view="home"] .site-header:hover .shop-actions,
body.admin-unlocked[data-shop-view="home"] .site-header:focus-within .shop-actions {
  color: #fff;
}

body.admin-unlocked .brand-wordmark {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: inline-grid;
  place-items: center;
  align-items: center;
  position: relative;
  width: clamp(158px, 12.8vw, 192px);
  line-height: 0;
  transform: translateX(5px);
}

body.admin-unlocked .brand-wordmark__lockup {
  display: block;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 1;
  transition: opacity 0.28s ease;
}

body.admin-unlocked .brand-wordmark__lockup--white {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

body.admin-unlocked .brand-wordmark__text {
  display: block;
  width: calc(100% - clamp(68px, 5.8vw, 86px));
  height: auto;
  object-fit: contain;
}

body.admin-unlocked .brand-wordmark__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

body.admin-unlocked .brand-wordmark__mark {
  display: block;
  width: clamp(62px, 5.1vw, 78px);
  height: auto;
  object-fit: contain;
  transform: none;
}

body.admin-unlocked[data-shop-view="home"] .shop-action-icon img {
  filter: brightness(0) invert(1);
  transition: filter 0.28s ease;
}

body.admin-unlocked[data-shop-view="home"] .site-header:hover .shop-action-icon img,
body.admin-unlocked[data-shop-view="home"] .site-header:focus-within .shop-action-icon img {
  filter: brightness(0) invert(1);
}

body.admin-unlocked[data-shop-view="home"]:not(.home-header-solid) .brand-wordmark__lockup--black {
  opacity: 0;
}

body.admin-unlocked[data-shop-view="home"]:not(.home-header-solid) .brand-wordmark__lockup--white {
  opacity: 1;
}

body.admin-unlocked .site-nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  gap: clamp(12px, 1.7vw, 24px);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.075em;
}

body.admin-unlocked .shop-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

body.admin-unlocked .nav-item {
  position: static;
  display: grid;
  align-items: center;
  min-height: 36px;
}

body.admin-unlocked .site-nav a {
  position: relative;
  display: inline-grid;
  align-items: center;
  min-height: 30px;
  transition: color 0.2s ease;
}

body.admin-unlocked .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

body.admin-unlocked .site-nav a:hover,
body.admin-unlocked .site-nav a[aria-current] {
  color: var(--ink);
}

body.admin-unlocked[data-shop-view="home"] .site-nav a:hover,
body.admin-unlocked[data-shop-view="home"] .site-nav a[aria-current],
body.admin-unlocked[data-shop-view="home"] .nav-item:hover>a {
  color: #fff;
}

body.admin-unlocked .site-nav a:hover::after,
body.admin-unlocked .site-nav a[aria-current]::after,
body.admin-unlocked .nav-item:hover>a::after,
body.admin-unlocked .nav-item.mega-menu-open>a::after {
  transform: scaleX(1);
}

body.admin-unlocked .mega-menu {
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  z-index: 18;
  display: none;
  grid-template-columns: 220px 250px;
  justify-content: start;
  gap: clamp(34px, 5vw, 82px);
  padding: 22px clamp(26px, 3vw, 54px) 30px;
  background: rgba(251, 250, 246, 0.985);
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  box-shadow: 0 28px 80px rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .nav-item:hover .mega-menu,
body.admin-unlocked .nav-item:focus-within .mega-menu,
body.admin-unlocked .nav-item.mega-menu-open .mega-menu {
  display: grid;
}

body.admin-unlocked.mega-menu-closing .mega-menu {
  display: none !important;
}

body.admin-unlocked .mega-menu div {
  display: grid;
  align-content: start;
  gap: 10px;
}

body.admin-unlocked .mega-menu p {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .mega-menu a {
  min-height: 0;
  color: rgba(16, 16, 15, 0.62);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

body.admin-unlocked .mega-menu a::after {
  bottom: -2px;
  right: auto;
  width: 100%;
}

.shop-announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 11;
  display: grid;
  grid-template-columns: minmax(48px, 1fr) minmax(0, auto) minmax(48px, 1fr);
  align-items: center;
  height: 34px;
  width: 100%;
  border: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.08), rgba(251, 250, 246, 0.18), rgba(251, 250, 246, 0.08)),
    rgba(16, 16, 15, 0.18);
  border-bottom: 1px solid rgba(251, 250, 246, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 1px 18px rgba(16, 16, 15, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
  color: rgba(251, 250, 246, 0.88);
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.105em;
}

.shop-announcement__message {
  grid-column: 2;
  justify-self: center;
  max-width: min(760px, calc(100vw - 220px));
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0 14px;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 34px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  text-transform: none;
  transition: opacity 180ms ease, color 180ms ease;
}

.shop-announcement__message.is-changing {
  opacity: 0;
}

.shop-announcement__arrow {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(251, 250, 246, 0.66);
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, opacity 160ms ease;
}

.shop-announcement__arrow:hover,
.shop-announcement__arrow:focus-visible {
  color: rgba(251, 250, 246, 0.96);
}

.shop-announcement__arrow--prev {
  grid-column: 1;
  justify-self: start;
  margin-left: clamp(18px, 3vw, 52px);
}

.shop-announcement__controls {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-right: clamp(18px, 3vw, 52px);
}

.shop-announcement__dot {
  width: 4px;
  height: 4px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(251, 250, 246, 0.38);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.shop-announcement__dot.is-active,
.shop-announcement__dot:hover,
.shop-announcement__dot:focus-visible {
  background: rgba(251, 250, 246, 0.9);
  transform: scale(1.22);
}

body.admin-unlocked:not([data-shop-view="home"]) .shop-announcement {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.72), rgba(251, 250, 246, 0.9), rgba(251, 250, 246, 0.72)),
    rgba(251, 250, 246, 0.72);
  color: rgba(16, 16, 15, 0.58);
  border-bottom-color: rgba(16, 16, 15, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 1px 16px rgba(16, 16, 15, 0.04);
}

body.admin-unlocked:not([data-shop-view="home"]) .shop-announcement__arrow {
  color: rgba(16, 16, 15, 0.46);
}

body.admin-unlocked:not([data-shop-view="home"]) .shop-announcement__arrow:hover,
body.admin-unlocked:not([data-shop-view="home"]) .shop-announcement__arrow:focus-visible {
  color: rgba(16, 16, 15, 0.72);
}

body.admin-unlocked:not([data-shop-view="home"]) .shop-announcement__dot {
  background: rgba(16, 16, 15, 0.22);
}

body.admin-unlocked:not([data-shop-view="home"]) .shop-announcement__dot.is-active,
body.admin-unlocked:not([data-shop-view="home"]) .shop-announcement__dot:hover,
body.admin-unlocked:not([data-shop-view="home"]) .shop-announcement__dot:focus-visible {
  background: rgba(16, 16, 15, 0.58);
}

.shop-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.currency-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: inherit;
}

.currency-selector::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.currency-selector:hover::after,
.currency-selector:focus-within::after {
  transform: scaleX(1);
}

.currency-selector__button {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0 2px;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.currency-selector__chevron {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.currency-selector__button[aria-expanded="true"] .currency-selector__chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.currency-selector__button:focus-visible {
  outline: 0;
}

.currency-selector__mark {
  position: relative;
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
}

.currency-selector__mark img,
.country-menu__flag img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.country-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: -10px;
  z-index: 55;
  width: min(292px, calc(100vw - 10px));
  padding: 12px 0;
  border: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.country-menu[hidden] {
  display: none;
}

.country-menu__list {
  max-height: min(380px, 58vh);
  overflow: auto;
  padding: 0;
  scrollbar-width: thin;
}

.country-menu__option {
  width: 100%;
  min-height: 38px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 8px 18px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  cursor: pointer;
}

.country-menu__option:hover,
.country-menu__option[aria-selected="true"] {
  background: rgba(16, 16, 15, 0.04);
  text-decoration: none;
}

.country-menu__option strong {
  font: inherit;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-menu__flag {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 16, 15, 0.04);
  font-size: 15px;
  line-height: 1;
  overflow: hidden;
}

.country-menu__currency {
  color: rgba(16, 16, 15, 0.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.currency-selector__button {
  gap: 6px;
}

.currency-selector__button [data-country-code] {
  min-width: 54px;
  text-align: right;
}

.currency-selector__mark,
.country-menu__flag {
  display: none !important;
}

.country-menu__option {
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 12px;
}

.country-menu__option::before {
  content: "";
  width: 12px;
  color: var(--ink);
  font-size: 12px;
}

.country-menu__option[aria-selected="true"]::before {
  content: "✓";
}

.country-menu__option:hover,
.country-menu__option[aria-selected="true"] {
  background: rgba(16, 16, 15, 0.07);
}

.account-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 8px;
  z-index: 62;
  width: min(320px, calc(100vw - 28px));
  padding: 20px 22px 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(16, 16, 15, 0.14);
}

.account-popover[hidden] {
  display: none;
}

.account-popover p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.account-popover__signed-out,
.account-popover__signed-in {
  display: grid;
  gap: 10px;
}

body:not(.account-signed-in) .account-popover__signed-in,
body.account-signed-in .account-popover__signed-out {
  display: none;
}

.account-popover a,
.account-popover button {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
}

.account-popover__primary {
  background: var(--ink) !important;
  color: #fff !important;
}

.account-popover__secondary {
  background: #f1f1ef !important;
  color: var(--ink) !important;
}

.account-popover__quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-popover__quick a,
.account-popover__signed-in a,
.account-popover__signed-in button {
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: #f5f5f3;
}

.shop-action-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.shop-action-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.shop-action-icon:hover {
  opacity: 0.64;
}

.shop-action-icon[data-action-disabled] {
  cursor: default;
}

.shop-action-icon[data-action-disabled]:hover {
  opacity: 1;
}

.cart-count-badge {
  position: absolute;
  right: 2px;
  top: 3px;
  min-width: 13px;
  height: 13px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body:not(.admin-unlocked) .shop-announcement {
  display: none;
}

body.admin-unlocked [data-shop-view]:not(.shop-view-active) {
  display: none !important;
}

body.admin-unlocked [data-shop-view].shop-view-active:not(.product-detail) {
  display: grid !important;
}

body.admin-unlocked .product-detail.shop-view-active {
  display: grid !important;
}

body.admin-unlocked {
  overflow-x: hidden;
}

.shop-video-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #11110f;
  color: #fff;
  isolation: isolate;
}

.shop-video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.12), rgba(16, 16, 15, 0.3)),
    radial-gradient(circle at center, rgba(16, 16, 15, 0.03), rgba(16, 16, 15, 0.28));
}

.shop-video-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate(2.2%, 10.5%) scale(1.16);
  transform-origin: center center;
  filter: saturate(0.86) contrast(1.02);
}

.shop-video-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% top;
}

.shop-video-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 18px;
  text-align: center;
  transform: translateY(clamp(54px, 7vh, 82px));
}

.shop-video-hero__copy p {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.shop-video-hero__intro {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.shop-video-hero__intro strong {
  color: inherit;
  font-size: clamp(15px, 1.28vw, 22px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.shop-video-hero__button {
  min-width: 84px;
  min-height: 26px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 0 #fff;
  transition: color 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, transform 0.32s ease;
}

.shop-video-hero__button:hover,
.shop-video-hero__button:focus-visible {
  color: var(--ink);
  border-color: #fff;
  box-shadow: inset 0 -30px 0 0 #fff;
  transform: translateY(-1px);
}

body.admin-unlocked .home-transition {
  min-height: clamp(46px, 5vw, 86px);
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .home-transition--light {
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.08), rgba(244, 240, 232, 0)),
    #f4f0e8;
}

body.admin-unlocked .home-transition--dark {
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0), rgba(16, 16, 15, 0.1)),
    var(--ivory);
}

body.admin-unlocked .home-transition--boxed {
  min-height: clamp(42px, 5vw, 78px);
  display: grid;
  place-items: center;
  background: var(--ivory);
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 0;
}

body.admin-unlocked .home-transition--boxed span {
  display: none;
}

body.admin-unlocked .collection-visual {
  display: none;
  margin-top: 0;
  height: 0;
  overflow: hidden;
  background: #f1f0ed;
}

body.admin-unlocked .collection-visual.shop-view-active {
  display: none !important;
}

body.admin-unlocked .collection-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.88) contrast(1.02);
}

body.admin-unlocked .shop-social-strip {
  overflow: hidden;
  contain: layout paint;
  background: var(--ivory);
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .social-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  contain: layout paint;
}

body.admin-unlocked .social-track {
  display: flex;
  width: max-content;
  animation: lorent-social-scroll 90s linear infinite;
}

body.admin-unlocked .social-track img {
  width: clamp(170px, 19vw, 340px);
  height: clamp(210px, 25vw, 420px);
  object-fit: cover;
  border-right: 1px solid rgba(251, 250, 246, 0.86);
  filter: saturate(0.9) contrast(1.03);
}

@keyframes lorent-social-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.admin-unlocked .social-track {
    animation: none;
  }
}

body.admin-unlocked .collection-page-header {
  margin-top: 95px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  margin-inline: 0;
  padding: 20px max(32px, calc((100vw - 1460px) / 2)) 18px;
  background: #fff;
  border-bottom: 1px solid rgba(16, 16, 15, 0.06);
}

body.admin-unlocked .collection-page-title {
  display: grid;
  justify-items: center;
  text-align: center;
}

body.admin-unlocked .collection-page-title p {
  margin: 0;
  color: rgba(16, 16, 15, 0.5);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.admin-unlocked .collection-page-header h1 {
  display: none;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: clamp(36px, 2.3vw, 48px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

body.admin-unlocked .collection-page-title span {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(16, 16, 15, 0.42);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.admin-unlocked .collection-page-title i {
  width: 26px;
  height: 1px;
  display: block;
  background: rgba(16, 16, 15, 0.22);
}

body.admin-unlocked .collection-toolbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  border-top: 0;
  border-bottom: 0;
  color: var(--ink);
}

body.admin-unlocked .collection-toolbar::before,
body.admin-unlocked .collection-toolbar::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: rgba(16, 16, 15, 0.06);
  transform: translateX(-50%);
  pointer-events: none;
}

body.admin-unlocked .collection-toolbar::before {
  top: 0;
}

body.admin-unlocked .collection-toolbar::after {
  bottom: 0;
}

body.admin-unlocked .collection-toolbar__right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(16, 16, 15, 0.44);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
}

body.admin-unlocked .collection-toolbar button,
body.admin-unlocked .collection-filter,
body.admin-unlocked .collection-sort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.admin-unlocked .collection-filter[aria-expanded="true"] svg,
body.admin-unlocked .collection-sort[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

body.admin-unlocked .collection-toolbar svg {
  width: 13px;
  height: 13px;
  transition: transform 0.16s ease;
}

body.admin-unlocked .collection-dropdown {
  position: relative;
  display: inline-flex;
}

body.admin-unlocked .collection-dropdown__menu {
  position: absolute;
  top: calc(100% + 13px);
  z-index: 50;
  display: grid;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 15, 0.06);
  box-shadow: 0 16px 36px rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .collection-dropdown__menu[hidden] {
  display: none;
}

body.admin-unlocked .collection-dropdown__menu--availability {
  left: 0;
  min-width: 142px;
  padding: 13px 14px;
  gap: 10px;
}

body.admin-unlocked .collection-dropdown__menu--availability label {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
}

body.admin-unlocked .collection-dropdown__menu--availability input {
  width: 15px;
  height: 15px;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(16, 16, 15, 0.34);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
}

body.admin-unlocked .collection-dropdown__menu--availability input:checked {
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.4 6.2 5 8.7l4.6-5.2' fill='none' stroke='%2310100f' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    #fff;
  background-size: 11px 11px, auto;
  background-position: center, 0 0;
  background-repeat: no-repeat;
}

body.admin-unlocked .collection-dropdown--sort {
  position: relative;
}

body.admin-unlocked .collection-dropdown__menu--sort {
  right: 0;
  min-width: 198px;
  padding: 12px 0;
}

body.admin-unlocked .collection-dropdown__menu--sort button {
  position: relative;
  width: 100%;
  justify-content: flex-start;
  min-height: 28px;
  padding: 0 18px 0 38px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

body.admin-unlocked .collection-dropdown__menu--sort button:hover {
  background: rgba(16, 16, 15, 0.04);
}

body.admin-unlocked .collection-dropdown__menu--sort button[aria-current="true"]::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 9px;
  height: 5px;
  border-left: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: translateY(-60%) rotate(-45deg);
}

body.admin-unlocked .collection-view-icons {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(16, 16, 15, 0.72);
}

body.admin-unlocked .collection-view-button {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  color: rgba(16, 16, 15, 0.48);
  line-height: 0;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease;
}

body.admin-unlocked .collection-view-button:hover,
body.admin-unlocked .collection-view-button.is-active {
  color: var(--ink);
}

body.admin-unlocked .collection-view-button.is-active {
  background: rgba(16, 16, 15, 0.05);
}

body.admin-unlocked .collection-view-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

body.admin-unlocked .collection-view-mark {
  position: relative;
  width: 13px;
  height: 13px;
  display: block;
  margin: auto;
}

body.admin-unlocked .collection-view-mark::before {
  content: "";
  position: absolute;
  left: 0.5px;
  top: 0.5px;
  display: block;
  background: currentColor;
}

body.admin-unlocked .collection-view-mark--relaxed::before {
  width: 4px;
  height: 4px;
  box-shadow:
    8px 0 currentColor,
    0 8px currentColor,
    8px 8px currentColor;
}

body.admin-unlocked .collection-view-mark--compact::before {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  box-shadow:
    6px 0 currentColor,
    12px 0 currentColor,
    0 6px currentColor,
    6px 6px currentColor,
    12px 6px currentColor,
    0 12px currentColor,
    6px 12px currentColor,
    12px 12px currentColor;
}

body.admin-unlocked .collection-tabs {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 1px;
  padding-top: 0;
}

body.admin-unlocked .collection-tabs a {
  position: relative;
  padding-bottom: 7px;
  color: rgba(16, 16, 15, 0.52);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

body.admin-unlocked .collection-tabs a[aria-current],
body.admin-unlocked .collection-tabs a:hover {
  color: var(--ink);
}

body.admin-unlocked .collection-tabs a[aria-current]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(16, 16, 15, 0.86);
}

body.admin-unlocked .shop-collection {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 346px));
  justify-content: center;
  gap: clamp(14px, 1.35vw, 22px);
  width: min(1460px, calc(100% - 64px));
  margin: 0 auto;
  padding: 18px 0 84px;
  background: #fff;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .shop-collection.shop-collection--view-compact {
  grid-template-columns: repeat(4, minmax(0, 274px));
}

body.admin-unlocked .shop-collection.shop-collection--filtered {
  grid-template-columns: repeat(2, minmax(0, 346px));
  width: min(760px, calc(100% - 56px));
  margin: 0 auto;
  padding-inline: 0;
}

body.admin-unlocked .shop-collection.shop-collection--filtered.shop-collection--view-compact {
  grid-template-columns: repeat(2, minmax(0, 274px));
  width: min(596px, calc(100% - 56px));
}

body.admin-unlocked .shop-collection[data-visible-count="1"] {
  grid-template-columns: minmax(0, 486px);
  width: min(536px, calc(100% - 56px));
}

body.admin-unlocked .shop-collection[data-visible-count="1"].shop-collection--view-compact {
  grid-template-columns: minmax(0, 382px);
  width: min(430px, calc(100% - 56px));
}

body.admin-unlocked .collection-product {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #fff;
  transition: opacity 0.18s ease;
}

body.admin-unlocked .collection-product--hidden {
  display: none !important;
}

body.admin-unlocked .collection-product__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: clamp(18px, 2.2vw, 32px);
  background: var(--product-surface);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 15, 0.035);
}

body.admin-unlocked .brand-page {
  margin-top: 95px;
  min-height: calc(100svh - 95px);
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .brand-page--story {
  position: relative;
  display: block;
  margin-top: 95px;
  min-height: calc(100svh - 95px);
  padding: 0 0 clamp(58px, 7vw, 92px);
  overflow: hidden;
  background: #fff;
  border-top: 0;
}

body.admin-unlocked .brand-page--story::after {
  display: none;
}

body.admin-unlocked .story-page__media {
  position: relative;
  width: 100%;
  height: clamp(330px, 52vw, calc(100svh - 95px));
  min-height: 0;
  background: #fff;
  overflow: hidden;
}

body.admin-unlocked .story-page__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.14);
}

body.admin-unlocked .story-page__media-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

body.admin-unlocked .story-page__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
}

body.admin-unlocked .story-page__copy {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  color: var(--ink);
  text-align: left;
}

body.admin-unlocked .story-page__hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 95px);
  align-items: center;
  justify-items: start;
  margin: 0 0 clamp(42px, 6vw, 76px);
  overflow: hidden;
  isolation: isolate;
  background: #11110f;
  color: #fff;
}

body.admin-unlocked .story-page__intro {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 9px;
  width: min(390px, calc(100% - 72px));
  max-width: none;
  margin-left: clamp(42px, 8vw, 116px);
  padding: 0;
  text-align: left;
  transform: translateY(clamp(-132px, -9vh, -76px));
}

body.admin-unlocked .brand-page__header h1 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

body.admin-unlocked .story-page__copy h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 10px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

body.admin-unlocked .story-page__eyebrow {
  margin: 0 0 13px !important;
  color: rgba(16, 16, 15, 0.48) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em;
  line-height: 1 !important;
  text-transform: uppercase;
}

body.admin-unlocked .story-page__lead {
  max-width: 360px;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(17px, 1.55vw, 24px) !important;
  line-height: 1.04 !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

body.admin-unlocked .story-page__note {
  position: absolute;
  top: clamp(54px, 7vw, 96px);
  right: clamp(42px, 7vw, 104px);
  z-index: 2;
  max-width: 270px;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.02em;
  text-align: right;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
}

body.admin-unlocked .story-page__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(118px, 15vh, 164px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  opacity: 0.78;
  transform: translateX(-50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

body.admin-unlocked .story-page__scroll-cue:hover,
body.admin-unlocked .story-page__scroll-cue:focus-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(3px);
}

body.admin-unlocked .story-page__scroll-cue:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

body.admin-unlocked .story-page__scroll-cue span {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
  transform: rotate(45deg);
}

body.admin-unlocked .story-page__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  border-top: 0;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.02);
}

body.admin-unlocked .story-page__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.1), rgba(16, 16, 15, 0.28)),
    radial-gradient(circle at center, rgba(16, 16, 15, 0.02), rgba(16, 16, 15, 0.25));
}

body.admin-unlocked .story-page__image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  object-position: center 48%;
}

body.admin-unlocked .story-page__image figcaption {
  display: none;
}

body.admin-unlocked .story-page__copy p {
  margin: 0;
  max-width: none;
  color: rgba(16, 16, 15, 0.62);
  font-size: 13px;
  font-weight: 400 !important;
  line-height: 1.56;
}

body.admin-unlocked .story-page__copy p:first-of-type {
  color: rgba(16, 16, 15, 0.76);
  font-weight: 400 !important;
}

body.admin-unlocked .story-page__body {
  display: block;
  width: min(760px, calc(100% - 72px));
  max-width: none;
  margin: 0 auto clamp(16px, 2vw, 20px);
  text-align: center;
}

body.admin-unlocked .story-page__body p {
  max-width: none;
  color: rgba(16, 16, 15, 0.72);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.62;
}

body.admin-unlocked .story-page__chapters {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  border-top: 1px solid rgba(16, 16, 15, 0.075);
}

body.admin-unlocked .story-page__chapters section {
  display: grid;
  grid-template-columns: minmax(110px, 170px) minmax(0, 1fr);
  column-gap: clamp(18px, 4vw, 34px);
  align-items: start;
  padding: clamp(18px, 2.5vw, 24px) 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.075);
}

body.admin-unlocked .story-page__chapters span {
  color: rgba(16, 16, 15, 0.58);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

body.admin-unlocked .story-page__chapters p {
  max-width: 520px;
  color: rgba(16, 16, 15, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

body.admin-unlocked .story-page__signature {
  width: min(760px, calc(100% - 72px));
  margin: 0 auto !important;
  padding-top: 0;
  border-top: 0;
  color: rgba(16, 16, 15, 0.42) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 1.45 !important;
  text-transform: none;
}

body.admin-unlocked .brand-page--lookbook {
  padding: 24px 0 0;
}

body.admin-unlocked .brand-page--lookbook .brand-page__header {
  display: block;
  padding: 0 10px 22px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.14);
}

body.admin-unlocked .brand-page--lookbook .brand-page__header h1 {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.admin-unlocked .lookbook-collection-tabs {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

body.admin-unlocked .lookbook-collection-tabs::-webkit-scrollbar {
  display: none;
}

body.admin-unlocked .lookbook-collection-tabs a {
  color: rgba(16, 16, 15, 0.62);
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
}

body.admin-unlocked .lookbook-collection-tabs a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.admin-unlocked .brand-page__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  align-items: end;
  gap: 28px;
  padding-bottom: clamp(30px, 4vw, 54px);
}

body.admin-unlocked .brand-page__header h1 {
  margin-bottom: 0;
}

body.admin-unlocked .brand-page__header p {
  margin: 0;
  color: rgba(16, 16, 15, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

body.admin-unlocked .lookbook-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 16, 15, 0.08);
  border: 0;
}

body.admin-unlocked .lookbook-preview-grid a {
  display: block;
  color: inherit;
  text-decoration: none;
}

body.admin-unlocked .lookbook-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: #f3f2ef;
}

body.admin-unlocked .collection-product__media img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.admin-unlocked .collection-product[data-product-family="matteo"][data-product-color="black"] .product-card-icon {
  width: 97%;
  height: 97%;
}

body.admin-unlocked .collection-product__media:hover img {
  transform: scale(1.01);
}

body.admin-unlocked .collection-product__media .product-card-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  pointer-events: none;
}

body.admin-unlocked .collection-product__media:hover .product-card-hover,
body.admin-unlocked .collection-product.card-gallery-active .product-card-hover {
  opacity: 1;
}

body.admin-unlocked .collection-product__media:hover .product-card-icon,
body.admin-unlocked .collection-product.card-gallery-active .product-card-icon {
  opacity: 0;
}

body.admin-unlocked .sold-out-marker {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  padding: 0 7px;
  background: rgba(16, 16, 15, 0.86);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

body.admin-unlocked .quick-bag {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transform: translateY(7px) rotate(-120deg);
  transition: opacity 0.2s ease, background 0.18s ease, border-color 0.18s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

body.admin-unlocked .quick-bag:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 16, 15, 0.14);
  transform: translateY(-1px) rotate(360deg);
}

body.admin-unlocked .quick-bag:active {
  transform: translateY(0) rotate(360deg) scale(0.94);
}

body.admin-unlocked .quick-bag:focus-visible {
  outline: 1px solid rgba(16, 16, 15, 0.72);
  outline-offset: 3px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 16, 15, 0.16);
}

body.admin-unlocked .quick-bag.is-disabled,
body.admin-unlocked .home-piece-card__quick.is-disabled {
  opacity: 0;
  pointer-events: none;
}

body.admin-unlocked .collection-product:hover .quick-bag,
body.admin-unlocked .collection-product:focus-within .quick-bag {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

body.admin-unlocked .collection-product--sold-out:hover .quick-bag,
body.admin-unlocked .collection-product--sold-out:focus-within .quick-bag,
body.admin-unlocked .quick-bag.is-disabled {
  opacity: 0;
  pointer-events: none;
}

body.admin-unlocked .product-card-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 16, 15, 0.08);
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

body.admin-unlocked .collection-product:hover .product-card-dots,
body.admin-unlocked .collection-product.card-gallery-active .product-card-dots {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.admin-unlocked .product-card-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(16, 16, 15, 0.28);
  transition: width 0.18s ease, background 0.18s ease;
}

body.admin-unlocked .product-card-dot--active {
  width: 16px;
  background: var(--ink);
}

body.admin-unlocked .product-card-arrow {
  display: none;
}

body.admin-unlocked .product-card-arrow img {
  width: 18px;
  height: 18px;
}

body.admin-unlocked .collection-product__media:hover .product-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

body.admin-unlocked .product-card-nav {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.admin-unlocked .product-card-nav--prev {
  left: 18px;
}

body.admin-unlocked .product-card-nav--next {
  right: 18px;
}

body.admin-unlocked .product-card-nav img {
  width: 18px;
  height: 18px;
}

body.admin-unlocked .collection-product:hover .product-card-nav,
body.admin-unlocked .collection-product.card-gallery-active .product-card-nav {
  opacity: 1;
}

body.admin-unlocked .product-card-nav:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 16, 15, 0.14);
}

body.admin-unlocked .collection-product__info {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 12px;
  row-gap: 3px;
  padding: 8px 2px 0;
  border-top: 0;
  background: #fff;
  text-align: left;
}

body.admin-unlocked .collection-product__info h2 {
  margin: 0;
  font-family: var(--font-primary);
  color: rgba(16, 16, 15, 0.82);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

body.admin-unlocked .collection-product__info p {
  display: block;
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: rgba(16, 16, 15, 0.46);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

body.admin-unlocked .collection-product__info strong {
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: rgba(16, 16, 15, 0.48);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.18;
  text-transform: none;
}

body.admin-unlocked .collection-product__info strong {
  margin-top: 0;
}

body.admin-unlocked .hero-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .hero-section::after {
  display: none;
}

body.admin-unlocked .hero-copy {
  width: min(620px, 100%);
  margin: 0;
  padding: clamp(118px, 13vw, 180px) clamp(32px, 8vw, 128px) clamp(72px, 8vw, 116px);
  align-self: center;
  color: var(--ink);
}

body.admin-unlocked .hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(56px, 6.7vw, 104px);
  letter-spacing: 0;
  color: #11110f;
}

body.admin-unlocked .hero-copy>p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(16, 16, 15, 0.62);
  font-size: 16px;
  line-height: 1.55;
}

body.admin-unlocked .hero-media {
  position: relative;
  inset: auto;
  z-index: 0;
  min-height: 100svh;
  background: #e9e3da;
}

body.admin-unlocked .hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.9) contrast(1.04);
}

body.admin-unlocked .hero-proof span {
  border-color: rgba(16, 16, 15, 0.14);
  background: transparent;
  color: rgba(16, 16, 15, 0.66);
  letter-spacing: 0.04em;
}

body.admin-unlocked .hero-actions {
  margin-top: 30px;
}

body.admin-unlocked .hero-copy .button-primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

body.admin-unlocked .hero-copy .button-secondary {
  color: var(--ink);
  border-color: rgba(16, 16, 15, 0.22);
}

body.admin-unlocked .section {
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: clamp(70px, 8vw, 112px);
}

body.admin-unlocked .section-heading {
  max-width: 760px;
}

body.admin-unlocked h2 {
  color: #171715;
  font-size: clamp(42px, 5.2vw, 76px);
  letter-spacing: 0;
}

body.admin-unlocked .eyebrow,
body.admin-unlocked .tile-kicker {
  color: #8b6e4f;
  letter-spacing: 0.08em;
  font-weight: 600;
}

body.admin-unlocked .about-motion__copy .eyebrow,
body.admin-unlocked .about-motion__copy h2 {
  color: #fff;
}

body.admin-unlocked .product-grid,
body.admin-unlocked .fit-cards {
  gap: 14px;
}

body.admin-unlocked .product-tile,
body.admin-unlocked .fit-cards article {
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(251, 250, 246, 0.68);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

body.admin-unlocked .product-tile {
  gap: 0;
}

body.admin-unlocked .product-tile:hover,
body.admin-unlocked .fit-cards article:hover {
  border-color: rgba(16, 16, 15, 0.2);
  transform: translateY(-2px);
}

body.admin-unlocked .product-tile div {
  padding: 20px;
}

body.admin-unlocked .product-tile img {
  aspect-ratio: 0.86;
  filter: saturate(0.92) contrast(1.03);
}

body.admin-unlocked .section-fit,
body.admin-unlocked .section-process,
body.admin-unlocked .section-faq {
  border-top-color: rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .fit-cards article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

body.admin-unlocked .fit-cards span {
  margin-bottom: auto;
  padding-bottom: 42px;
}

body.admin-unlocked .proof-board {
  background: #f4f0e8;
}

body.admin-unlocked .proof-board__copy h2 {
  max-width: 560px;
}

body.admin-unlocked .proof-board__media {
  gap: 14px;
}

body.admin-unlocked .section-lookbook {
  background: var(--ink);
  padding: 0;
}

body.admin-unlocked .section-lookbook h2 {
  max-width: 560px;
  color: var(--ivory);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.03;
}

body.admin-unlocked .lookbook-media img {
  height: 815px;
  min-height: 0;
  object-position: center 45%;
  filter: saturate(0.9) contrast(1.04);
}

body.admin-unlocked .home-essentials {
  display: grid;
  padding: clamp(14px, 2vw, 22px) clamp(18px, 4vw, 44px);
  background: var(--ivory);
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .home-essentials__groups {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
}

body.admin-unlocked .home-essentials__group {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

body.admin-unlocked .home-essentials__group h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.admin-unlocked .home-essentials__title {
  display: grid;
  justify-items: start;
  gap: 4px;
  text-align: left;
}

body.admin-unlocked .home-essentials__title p {
  margin: 0;
  color: rgba(16, 16, 15, 0.5);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.admin-unlocked .home-essentials__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: transparent;
}

body.admin-unlocked .home-essentials__products a {
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  gap: 9px;
  padding: 8px 10px;
  background: rgba(16, 16, 15, 0.025);
  color: var(--ink);
  border: 1px solid rgba(16, 16, 15, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease;
}

body.admin-unlocked .home-essentials__products img {
  width: 38px;
  height: 46px;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 0.18s ease;
}

body.admin-unlocked .home-essentials__products a:hover {
  background: rgba(16, 16, 15, 0.045);
  border-color: rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .home-essentials__products a:hover img {
  transform: translateY(-1px);
}

body.admin-unlocked .home-essentials__products span {
  min-height: 0;
  justify-self: start;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

body.admin-unlocked .section-waitlist {
  background: var(--ivory);
  border-top: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .waitlist-panel {
  width: min(820px, 100%);
  padding: clamp(34px, 5.8vw, 66px);
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(251, 250, 246, 0.86);
  box-shadow: 0 32px 100px rgba(16, 16, 15, 0.05);
}

body.admin-unlocked .waitlist-panel h2 {
  margin-left: auto;
  margin-right: auto;
}

body.admin-unlocked .signup-form input {
  background: rgba(244, 240, 232, 0.72);
}

body.admin-unlocked .shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

body.admin-unlocked .section-drop {
  max-width: none;
  padding: 102px 0 0;
  background: #f4f0e8;
}

body.admin-unlocked .drop-hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: auto;
  aspect-ratio: 16 / 8.4;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #f4f0e8;
}

body.admin-unlocked .drop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.2), rgba(16, 16, 15, 0.34)),
    radial-gradient(circle at 50% 52%, rgba(16, 16, 15, 0.05), rgba(16, 16, 15, 0.34) 70%);
}

body.admin-unlocked .drop-hero>img,
body.admin-unlocked .drop-hero>video,
body.admin-unlocked .drop-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.86) contrast(1.05);
}

body.admin-unlocked .drop-hero__copy {
  width: min(580px, calc(100% - 36px));
  display: grid;
  justify-items: center;
  text-align: center;
  color: #fff;
}

body.admin-unlocked .drop-hero__mark {
  width: clamp(46px, 6vw, 78px);
  aspect-ratio: 689 / 833;
  display: block;
  margin-bottom: 24px;
  background: #fff;
  -webkit-mask: url("detailedicon.png") center / contain no-repeat;
  mask: url("detailedicon.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28));
  opacity: 0.96;
}

body.admin-unlocked .drop-hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

body.admin-unlocked .drop-hero h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(96px, 18vw, 250px);
  line-height: 0.82;
  letter-spacing: 0.02em;
}

body.admin-unlocked .drop-hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.admin-unlocked .drop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

body.admin-unlocked .drop-hero__actions .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

body.admin-unlocked .drop-hero__actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.admin-unlocked .drop-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-auto-rows: clamp(230px, 19vw, 350px);
  gap: 1px;
  width: min(1480px, 100%);
  margin: 1px auto 0;
  background: rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .drop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.9) contrast(1.03);
}

body.admin-unlocked .drop-gallery img:first-child {
  grid-row: span 2;
}

body.admin-unlocked .drop-gallery img:nth-child(2) {
  grid-column: span 2;
}

body.admin-unlocked .drop-gallery img:nth-child(3),
body.admin-unlocked .drop-gallery img:nth-child(4) {
  object-position: center;
}

body.admin-unlocked .drop-editorial {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 96px);
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .drop-editorial h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 0.98;
  text-transform: uppercase;
}

body.admin-unlocked .drop-editorial p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  align-self: end;
  color: rgba(16, 16, 15, 0.64);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
}

body.admin-unlocked .drop-product-links {
  width: min(1180px, 100%);
  margin: 1px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 16, 15, 0.1);
  border: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .drop-product-links a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-height: 190px;
  padding: clamp(18px, 3vw, 34px);
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .drop-product-links img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

body.admin-unlocked .drop-product-links strong,
body.admin-unlocked .drop-product-links small {
  display: block;
  text-transform: uppercase;
}

body.admin-unlocked .drop-product-links strong {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0.03em;
}

body.admin-unlocked .drop-product-links small {
  color: rgba(16, 16, 15, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.admin-unlocked .drop-product-links--simple {
  margin: 0 auto;
  border-top: 0;
  background: rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .drop-product-links--simple a {
  min-height: 168px;
  background: var(--ivory);
}

body.admin-unlocked .drop-product-links--simple img {
  height: 126px;
}

body.admin-unlocked .drop-product-links--simple strong {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

body.admin-unlocked .related-products {
  grid-column: 1 / -1;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 4vw, 44px) clamp(54px, 7vw, 96px);
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  background: var(--ivory);
}

body.admin-unlocked .related-products__head {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 24px;
  text-align: center;
}

body.admin-unlocked .related-products__head p {
  margin: 0;
  color: rgba(16, 16, 15, 0.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

body.admin-unlocked .related-products__head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

body.admin-unlocked .related-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 16, 15, 0.1);
  border: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .related-products__grid a {
  display: grid;
  grid-template-rows: minmax(260px, 30vw) auto;
  background: #f3f3f1;
  color: var(--ink);
}

body.admin-unlocked .related-products__grid img {
  width: 100%;
  height: 100%;
  padding: clamp(24px, 4vw, 54px);
  object-fit: contain;
  transition: transform 0.24s ease;
}

body.admin-unlocked .related-products__grid a:hover img {
  transform: translateY(-3px);
}

body.admin-unlocked .related-products__grid span {
  display: grid;
  gap: 5px;
  padding: 18px;
  min-height: 88px;
  background: #fff;
  text-align: center;
  text-transform: uppercase;
}

body.admin-unlocked .related-products__grid strong {
  font-size: 12px;
  letter-spacing: 0.04em;
}

body.admin-unlocked .related-products__grid small {
  color: rgba(16, 16, 15, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.admin-unlocked .section-drop .section-heading p:not(.eyebrow),
body.admin-unlocked .section-women-shop .section-heading p:not(.eyebrow),
body.admin-unlocked .section-stores .section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 12px auto 0;
  color: rgba(16, 16, 15, 0.64);
}

body.admin-unlocked .women-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  background: #f2f2f1;
  border: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .women-grid .collection-product {
  min-height: 620px;
}

body.admin-unlocked .women-grid .collection-product__media {
  min-height: 470px;
}

body.admin-unlocked .women-grid .collection-product__media img {
  object-fit: cover;
  max-height: none;
}

body.admin-unlocked .women-grid .collection-product:nth-child(2) .collection-product__media img,
body.admin-unlocked .women-grid .collection-product:nth-child(3) .collection-product__media img {
  object-fit: contain;
  padding: 18px;
}

body.admin-unlocked .shop-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(251, 250, 246, 0.78);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

body.admin-unlocked .shop-card:hover {
  border-color: rgba(16, 16, 15, 0.22);
  transform: translateY(-2px);
}

body.admin-unlocked .shop-card>img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #e8e0d5;
  filter: saturate(0.92) contrast(1.03);
}

body.admin-unlocked .shop-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

body.admin-unlocked .shop-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 10px;
}

body.admin-unlocked .shop-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}

body.admin-unlocked .shop-card p:not(.tile-kicker):not(.shop-price) {
  color: rgba(16, 16, 15, 0.64);
}

body.admin-unlocked .shop-price {
  margin: 0;
  color: rgba(16, 16, 15, 0.52);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.admin-unlocked .swatches,
body.admin-unlocked .size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.admin-unlocked .swatches {
  margin: auto 0 14px;
  padding-top: 22px;
}

body.admin-unlocked .swatch {
  width: 58px;
  height: 72px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.08);
  padding: 0;
  background: #f2f2f1;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.16s ease, background 0.16s ease;
}

body.admin-unlocked .swatch img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  display: block;
}

body.admin-unlocked .swatch--hidden {
  display: none !important;
}

body.admin-unlocked .swatch--sold-out {
  background: #fff;
  border-color: rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .swatch--sold-out:disabled {
  cursor: not-allowed;
}

body.admin-unlocked .swatch--sold-out img {
  opacity: 0.42;
}

body.admin-unlocked .swatch--sold-out::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 1px;
  background: rgba(16, 16, 15, 0.24);
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
}

body.admin-unlocked .swatch--selected {
  border-color: var(--ink);
  background: #f6f6f5;
  box-shadow: inset 0 0 0 3px #fff;
  outline: none;
}

body.admin-unlocked .swatch--selected::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  pointer-events: none;
}

body.admin-unlocked .swatch--ivory {
  background: #eee6d8;
}

body.admin-unlocked .swatch--black {
  background: #f2f2f1;
}

body.admin-unlocked .size-row {
  margin-bottom: 22px;
}

body.admin-unlocked .size-row span,
body.admin-unlocked .size-row button {
  min-width: 42px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.16);
  background: transparent;
  color: rgba(16, 16, 15, 0.78);
  font-size: 12px;
  font-family: inherit;
}

body.admin-unlocked .size-row button {
  cursor: pointer;
}

body.admin-unlocked .size-row button:hover,
body.admin-unlocked .size-row button.size-option-selected {
  border-color: var(--ink);
  color: var(--ink);
}

body.admin-unlocked .size-row button.size-option-selected {
  background: var(--ink);
  color: var(--ivory);
}

body.admin-unlocked .size-row button:disabled,
body.admin-unlocked .size-row button.is-sold-out {
  position: relative;
  color: rgba(16, 16, 15, 0.28);
  background: #fff;
  border-color: rgba(16, 16, 15, 0.1);
  cursor: not-allowed;
}

body.admin-unlocked .size-row button:disabled::after,
body.admin-unlocked .size-row button.is-sold-out::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(16, 16, 15, 0.24);
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}

body.admin-unlocked .size-row button:disabled:hover,
body.admin-unlocked .size-row button.is-sold-out:hover {
  border-color: rgba(16, 16, 15, 0.1);
  color: rgba(16, 16, 15, 0.28);
}

body.admin-unlocked .product-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 620px);
  gap: 0;
  align-items: stretch;
  max-width: none;
  height: calc(100svh - 32px);
  min-height: 0;
  padding: 95px 0 0;
  overflow: hidden;
  background: var(--ivory);
  border-top: 0;
}

body.admin-unlocked .product-media-scroll {
  grid-column: 1 / 2;
  position: relative;
  display: block;
  align-items: stretch;
  height: calc(100svh - 125px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: var(--product-surface);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.admin-unlocked .product-media-scroll::-webkit-scrollbar,
body.admin-unlocked .product-detail .product-info::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body.admin-unlocked .product-detail .product-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  justify-items: center;
  justify-content: center;
  min-height: 0;
  height: auto;
  background: var(--product-surface);
  overflow: visible;
}

body.admin-unlocked .product-thumbnail-rail {
  display: none;
  position: fixed;
  top: 115px;
  left: 28px;
  z-index: 2;
  flex-direction: column;
  gap: 12px;
  max-height: calc(100svh - 169px);
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.admin-unlocked .product-thumbnail-rail::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body.admin-unlocked .product-thumbnail {
  width: 60px;
  height: 76px;
  padding: 0;
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: #f8f8f6;
  cursor: pointer;
  transition: border-color 0.16s ease, opacity 0.16s ease;
}

body.admin-unlocked .product-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border: 0;
  background: #f3f3f2;
}

body.admin-unlocked .product-thumbnail:hover,
body.admin-unlocked .product-thumbnail:focus-visible,
body.admin-unlocked .product-thumbnail--active {
  border-color: rgba(16, 16, 15, 0.82);
}

body.admin-unlocked .product-thumbnail:focus-visible {
  outline: 1px solid rgba(16, 16, 15, 0.88);
  outline-offset: 2px;
}

body.admin-unlocked .product-detail--matteo {
  background: var(--ivory);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

body.admin-unlocked .product-detail .product-gallery img {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  align-self: start;
  background: var(--product-surface);
  filter: saturate(0.92) contrast(1.03);
  border: 0;
  cursor: zoom-in;
  scroll-snap-align: start;
}

body.admin-unlocked .product-detail .product-gallery img:nth-child(2n) {
  margin-left: -1px;
  width: calc(100% + 1px);
}

body.admin-unlocked .product-detail .product-gallery img[data-variant-image="primary"] {
  padding: clamp(6px, 1vw, 18px) clamp(42px, 5vw, 86px) clamp(18px, 2vw, 36px);
}

body.admin-unlocked .product-detail .product-gallery img[src*="-piece-gallery-"] {
  padding: 0;
}

body.admin-unlocked .product-detail .product-gallery img.product-gallery__image--active,
body.admin-unlocked .product-detail .product-gallery img[data-gallery-active] {
  display: block;
}

body.admin-unlocked .product-detail .product-gallery img[data-variant-image="icon"] {
  object-fit: contain;
  object-position: center top;
  background: var(--product-surface);
}

body.admin-unlocked .gallery-swipe-hint {
  display: none;
}

body.admin-unlocked .gallery-dots {
  display: none;
}

.image-inspector[hidden] {
  display: none;
}

.image-inspector {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(9, 9, 8, 0.82);
  cursor: zoom-out;
}

.image-inspector img {
  max-width: min(94vw, 1320px);
  max-height: 90svh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--product-surface);
  cursor: default;
}

.image-inspector__close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.image-inspector__close:hover,
.image-inspector__close:focus-visible {
  background: #fff;
  color: var(--ink);
}

body.image-inspector-open {
  overflow: hidden;
}

body.admin-unlocked .product-detail .product-gallery img[src*="placket"],
body.admin-unlocked .product-detail .product-gallery img[src*="cuff"],
body.admin-unlocked .proof-board__media img {
  object-fit: cover;
}

body.admin-unlocked .product-detail .product-info {
  --product-control-width: min(100%, 430px);
  grid-column: 2 / 3;
  height: calc(100svh - 125px);
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: clamp(30px, 3.7vw, 50px) clamp(30px, 3.2vw, 52px);
  background: #fff;
  border-left: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .product-detail .product-info > * {
  width: var(--product-control-width);
}

body.admin-unlocked .product-back {
  position: absolute;
  top: clamp(18px, 2vw, 30px);
  left: clamp(20px, 3vw, 46px);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(16, 16, 15, 0.72);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 160ms ease, transform 160ms ease;
}

body.admin-unlocked .product-back:hover,
body.admin-unlocked .product-back:focus-visible {
  color: rgba(16, 16, 15, 0.96);
  transform: translateX(-2px);
}

body.admin-unlocked .product-back::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 7 5 11l4 4' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 11h9.5a4.5 4.5 0 0 1 0 9H12' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 7 5 11l4 4' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 11h9.5a4.5 4.5 0 0 1 0 9H12' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

body.admin-unlocked .product-detail .product-info h2 {
  margin: 0 0 8px;
  font-family: var(--font-primary);
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1.25;
  font-weight: 500 !important;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

body.admin-unlocked .product-detail .product-price {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400 !important;
}

body.admin-unlocked .product-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 22px;
}

body.admin-unlocked .product-price-row span {
  color: rgba(16, 16, 15, 0.46);
  font-size: 10.5px;
  font-weight: 400 !important;
}

body.admin-unlocked .product-price-row .product-price {
  margin: 0;
  font-weight: 400 !important;
}

body.admin-unlocked .product-fit-note {
  margin: 12px 0 5px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

body.admin-unlocked .product-fit-note span {
  display: block;
}

body.admin-unlocked .product-detail .product-info>p:not(.eyebrow):not(.product-price),
body.admin-unlocked .size-guide .section-heading p {
  color: rgba(16, 16, 15, 0.64);
}

body.admin-unlocked .product-options {
  display: grid;
  gap: 11px;
  margin: 0 0 18px;
}

body.admin-unlocked .product-options p:not(.product-fit-note) {
  margin: 4px 0 0;
  color: rgba(16, 16, 15, 0.58);
  font-size: 10.5px;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .product-options p:not(.product-fit-note) span {
  margin-left: 4px;
  font-weight: 400 !important;
  color: rgba(16, 16, 15, 0.58);
  letter-spacing: 0;
  text-transform: none;
}

body.admin-unlocked .product-options .swatches {
  margin: 0;
  padding: 0;
}

body.admin-unlocked .product-detail .size-row {
  width: 100%;
  flex-wrap: nowrap;
  gap: 8px;
}

body.admin-unlocked .product-detail .size-row button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 40px;
  font-size: 11px;
}

body.admin-unlocked .size-chart-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: -6px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}

body.admin-unlocked .size-chart-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.admin-unlocked .size-chart-link:hover,
body.admin-unlocked .size-chart-link:focus-visible {
  color: rgba(16, 16, 15, 0.58);
}

body.admin-unlocked .product-bullets {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(16, 16, 15, 0.68);
}

body.admin-unlocked .product-bullets li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .fit-meter {
  display: grid;
  gap: 9px;
  width: 100%;
  margin: 22px 0 18px;
}

body.admin-unlocked .fit-meter p {
  margin: 0;
  color: rgba(16, 16, 15, 0.58);
  font-size: 10.5px;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .fit-meter div {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  height: 3px;
  background: transparent;
}

body.admin-unlocked .fit-meter div::before,
body.admin-unlocked .fit-meter div::after,
body.admin-unlocked .fit-meter div span {
  content: "";
  display: block;
  height: 3px;
  background: rgba(16, 16, 15, 0.14);
}

body.admin-unlocked .fit-meter div span {
  grid-column: 2;
  grid-row: 1;
  background: var(--ink);
}

body.admin-unlocked .fit-meter div::before {
  grid-column: 1;
  grid-row: 1;
}

body.admin-unlocked .fit-meter div::after {
  grid-column: 3;
  grid-row: 1;
}

body.admin-unlocked .fit-meter small {
  display: flex;
  justify-content: space-between;
  color: rgba(16, 16, 15, 0.64);
  font-size: 10.5px;
}

body.admin-unlocked .purchase-notes {
  display: grid;
  gap: 10px;
  margin: 14px 0 28px;
  padding: 18px;
  list-style: none;
  background: #f2f2f1;
  color: rgba(16, 16, 15, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

body.admin-unlocked .purchase-notes li {
  display: flex;
  gap: 10px;
}

body.admin-unlocked .purchase-notes strong {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 5px;
  border-radius: 999px;
  background: #16b834;
}

body.admin-unlocked .stock-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

body.admin-unlocked .stock-note span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  border-radius: 999px;
  background: rgba(25, 166, 76, 0.16);
}

body.admin-unlocked .stock-note span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #19a64c;
  animation: lorent-stock-blink 1.35s ease-in-out infinite;
}

@keyframes lorent-stock-blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.38;
    transform: scale(0.72);
  }
}

body.admin-unlocked .stock-urgency {
  width: var(--product-control-width);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -7px 0 15px;
  color: rgba(16, 16, 15, 0.54);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}

body.admin-unlocked .stock-urgency span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
}

body.admin-unlocked .stock-urgency span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(16, 16, 15, 0.34);
}

body.admin-unlocked .stock-urgency svg,
body.admin-unlocked .stock-urgency path {
  display: none;
}

body.admin-unlocked .product-cart-button {
  width: var(--product-control-width);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 500 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

body.admin-unlocked .product-cart-button strong {
  display: none;
}

body.admin-unlocked .product-cart-button:hover,
body.admin-unlocked .product-cart-button:focus-visible {
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .product-cart-button:disabled,
body.admin-unlocked .product-cart-button.is-sold-out {
  background: rgba(16, 16, 15, 0.18);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: not-allowed;
}

body.admin-unlocked .product-cart-button:disabled:hover,
body.admin-unlocked .product-cart-button.is-sold-out:hover {
  background: rgba(16, 16, 15, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

body.admin-unlocked .product-notify-button {
  width: var(--product-control-width);
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 500 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
}

body.admin-unlocked .product-notify-button[hidden] {
  display: none;
}

body.admin-unlocked .product-notify-button:hover,
body.admin-unlocked .product-notify-button:focus-visible {
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .product-purchase-trust {
  width: var(--product-control-width);
  display: grid;
  gap: 9px;
  margin: 12px 0 24px;
  padding: 15px 16px;
  border: 1px solid rgba(16, 16, 15, 0.035);
  background: #f6f6f4;
  color: rgba(16, 16, 15, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

body.admin-unlocked .product-purchase-trust > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-right: 0;
  white-space: normal;
  font-weight: 400 !important;
}

body.admin-unlocked .product-purchase-trust__stock,
body.admin-unlocked .product-purchase-trust__limited {
  color: rgba(16, 16, 15, 0.64);
}

body.admin-unlocked .product-purchase-trust__stock i {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #16b834;
  animation: lorent-stock-pulse 1.8s ease-out infinite;
}

body.admin-unlocked .product-purchase-trust__stock i::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(22, 184, 52, 0.28);
  animation: lorent-stock-ring 1.8s ease-out infinite;
}

body.admin-unlocked .product-purchase-trust__limited i {
  width: 8px;
  height: 8px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 8px;
}

body.admin-unlocked .product-purchase-trust__limited i::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(16, 16, 15, 0.36);
}

body.admin-unlocked .product-detail.is-sold-out .product-purchase-trust__stock {
  color: rgba(16, 16, 15, 0.52);
}

body.admin-unlocked .product-detail.is-sold-out .product-purchase-trust__stock i {
  background: #ba3329;
}

body.admin-unlocked .product-detail.is-sold-out .product-purchase-trust__stock i::after {
  display: none;
}

@keyframes lorent-stock-pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.82);
  }
}

@keyframes lorent-stock-ring {
  0% {
    opacity: 0.45;
    transform: scale(0.72);
  }

  70%, 100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

body.admin-unlocked .product-purchase-trust > span:last-child {
  border-right: 0;
}

body.admin-unlocked .product-purchase-trust svg {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

body.admin-unlocked .product-purchase-trust path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

body.admin-unlocked .size-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 16, 15, 0.46);
}

body.admin-unlocked .size-chart-modal[hidden] {
  display: none;
}

body.admin-unlocked .size-chart-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

body.admin-unlocked .size-chart-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 40px));
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 15, 0.12);
  box-shadow: 0 18px 54px rgba(16, 16, 15, 0.22);
}

body.admin-unlocked .size-chart-modal__header {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.12);
}

body.admin-unlocked .size-chart-modal__header h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

body.admin-unlocked .size-chart-modal__close {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

body.admin-unlocked .size-chart-modal__close::before,
body.admin-unlocked .size-chart-modal__close::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 18px;
  height: 1.4px;
  background: currentColor;
}

body.admin-unlocked .size-chart-modal__close::before {
  transform: rotate(45deg);
}

body.admin-unlocked .size-chart-modal__close::after {
  transform: rotate(-45deg);
}

body.admin-unlocked .size-chart-modal__body {
  width: 100%;
  margin: 0 auto;
  padding: 24px 28px 30px;
}

body.admin-unlocked .size-chart-modal__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
}

body.admin-unlocked .size-chart-modal__tabs button {
  min-height: 35px;
  border: 0;
  padding: 0 13px;
  background: transparent;
  color: rgba(16, 16, 15, 0.78);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.02em;
  cursor: pointer;
}

body.admin-unlocked .size-chart-modal__tabs button.is-active {
  background: var(--ink);
  color: #fff;
}

body.admin-unlocked .size-chart-modal__body h3 {
  margin: 0 0 8px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

body.admin-unlocked .size-guide-panel[hidden] {
  display: none;
}

body.admin-unlocked .size-guide-panel__intro {
  width: min(420px, 100%);
  margin: 0 auto 20px;
  color: rgba(16, 16, 15, 0.54);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

body.admin-unlocked .size-recommendation-form {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

body.admin-unlocked .size-recommendation-gender,
body.admin-unlocked .size-recommendation-form label:last-child {
  grid-column: 1 / -1;
}

body.admin-unlocked .size-recommendation-gender {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

body.admin-unlocked .size-recommendation-gender legend {
  padding: 0;
  color: rgba(16, 16, 15, 0.72);
  font-size: 12px;
  line-height: 1.25;
}

body.admin-unlocked .size-recommendation-gender > div {
  display: flex;
  border: 1px solid rgba(16, 16, 15, 0.14);
}

body.admin-unlocked .size-recommendation-gender label {
  position: relative;
  flex: 1 1 0;
  width: 50%;
  min-width: 0;
  min-height: 40px;
  display: grid;
  place-items: center;
  margin: 0;
  box-sizing: border-box;
  color: rgba(16, 16, 15, 0.58);
  font-size: 12px;
  cursor: pointer;
}

body.admin-unlocked .size-recommendation-gender label span {
  width: 100%;
  height: 100%;
  min-height: 40px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  text-align: center;
}

body.admin-unlocked .size-recommendation-gender label + label {
  border-left: 1px solid rgba(16, 16, 15, 0.14);
}

body.admin-unlocked .size-recommendation-gender input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body.admin-unlocked .size-recommendation-gender label:has(input:checked) {
  background: var(--ink);
  color: #fff;
}

body.admin-unlocked .size-recommendation-form label {
  display: grid;
  gap: 6px;
  color: rgba(16, 16, 15, 0.72);
  font-size: 12px;
  line-height: 1.25;
}

body.admin-unlocked .size-recommendation-form input,
body.admin-unlocked .size-recommendation-form select {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(16, 16, 15, 0.14);
  border-radius: 0;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

body.admin-unlocked .size-recommendation-form input:focus,
body.admin-unlocked .size-recommendation-form select:focus {
  outline: 1px solid var(--ink);
  outline-offset: 0;
}

body.admin-unlocked .size-recommendation-result {
  width: min(420px, 100%);
  min-height: 60px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(16, 16, 15, 0.08);
  background: #f7f7f5;
  color: rgba(16, 16, 15, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

body.admin-unlocked .size-recommendation-result.is-ready {
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
}

body.admin-unlocked .size-recommendation-result small {
  grid-column: 2;
  color: rgba(16, 16, 15, 0.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.admin-unlocked .size-recommendation-result strong {
  grid-row: 1 / span 2;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

body.admin-unlocked .size-recommendation-result span {
  grid-column: 2;
}

body.admin-unlocked .size-recommendation-note {
  width: min(420px, 100%);
  margin: 14px auto 0;
  color: rgba(16, 16, 15, 0.54);
  font-size: 12px;
  line-height: 1.45;
}

body.admin-unlocked .size-chart-table {
  display: grid;
  min-width: 0;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.25;
}

body.admin-unlocked .size-chart-table [role="row"] {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 1.15fr;
  align-items: center;
}

body.admin-unlocked .size-chart-table [role="row"]:nth-child(odd) {
  background: #fafafa;
}

body.admin-unlocked .size-chart-table [role="row"]:nth-child(even),
body.admin-unlocked .size-chart-table [role="row"]:first-child {
  background: #f0f0ef;
}

body.admin-unlocked .size-chart-table strong,
body.admin-unlocked .size-chart-table span {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-right: 1px solid #fff;
  text-align: center;
}

body.admin-unlocked .size-chart-table strong:last-child,
body.admin-unlocked .size-chart-table span:last-child {
  border-right: 0;
}

body.admin-unlocked .size-chart-table [role="row"] span:first-child {
  font-weight: 800;
}

body.admin-unlocked .size-chart-modal__notes {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  color: rgba(16, 16, 15, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

body.admin-unlocked .size-chart-modal__notes p {
  margin: 0;
}

body.size-chart-open {
  overflow: hidden;
}

body.admin-unlocked .product-info details {
  width: var(--product-control-width);
  border-top: 1px solid rgba(16, 16, 15, 0.12);
}

body.admin-unlocked .product-info details:last-child {
  border-bottom: 1px solid rgba(16, 16, 15, 0.12);
}

body.admin-unlocked .product-info summary {
  position: relative;
  cursor: pointer;
  padding: 16px 0;
  color: rgba(16, 16, 15, 0.78);
  font-size: 10.5px;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  list-style: none;
}

body.admin-unlocked .product-info summary::-webkit-details-marker {
  display: none;
}

body.admin-unlocked .product-info summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(16, 16, 15, 0.72);
  font-size: 16px;
  font-weight: 400 !important;
}

body.admin-unlocked .product-info details[open] summary::after {
  content: "-";
}

body.admin-unlocked .product-info details p {
  max-width: 100%;
  margin: 0 0 18px;
  color: rgba(16, 16, 15, 0.62);
  font-size: 12px;
  font-weight: 400 !important;
  line-height: 1.58;
}

body.admin-unlocked .product-detail-list {
  margin: -2px 0 19px;
  padding: 0;
  list-style: none;
  color: rgba(16, 16, 15, 0.66);
  font-size: 12px;
  font-weight: 400 !important;
  line-height: 1.56;
}

body.admin-unlocked .product-detail-list li {
  position: relative;
  padding-left: 13px;
}

body.admin-unlocked .product-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 3.5px;
  height: 3.5px;
  background: rgba(16, 16, 15, 0.72);
  transform: translateY(-50%);
}

body.admin-unlocked .product-outfits {
  width: var(--product-control-width);
  padding: 17px 0 0;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
}

body.admin-unlocked .product-outfits h3 {
  margin: 0 0 10px;
  color: rgba(16, 16, 15, 0.78);
  font-family: var(--font-primary);
  font-size: 10.5px;
  font-weight: 500 !important;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .product-outfits__grid {
  display: grid;
  grid-template-columns: repeat(3, 52px);
  gap: 2px;
}

body.admin-unlocked .product-outfits__item {
  width: 52px;
  height: 64px;
  display: block;
  padding: 0;
  border: 0;
  background: #f3f3f2;
  cursor: zoom-in;
  overflow: hidden;
}

body.admin-unlocked .product-outfits__grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #f3f3f2;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.admin-unlocked .product-outfits__item:hover img,
body.admin-unlocked .product-outfits__item:focus-visible img {
  opacity: 0.92;
  transform: scale(1.035);
}

body.admin-unlocked .product-outfits__item:focus-visible {
  outline: 1px solid rgba(16, 16, 15, 0.44);
  outline-offset: 2px;
}

body.admin-unlocked .product-breadcrumb {
  width: var(--product-control-width);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 24px 0 0;
  padding: 15px 0 0;
  color: rgba(16, 16, 15, 0.42);
  font-size: 9.5px;
  font-weight: 500 !important;
  line-height: 1.3;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.admin-unlocked .product-breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 16, 15, 0.26);
  text-underline-offset: 3px;
}

body.admin-unlocked .product-breadcrumb a:hover {
  color: rgba(16, 16, 15, 0.78);
  border-bottom-color: rgba(16, 16, 15, 0.5);
}

body.admin-unlocked .waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

body.admin-unlocked .waitlist-modal[hidden] {
  display: none;
}

body.admin-unlocked .waitlist-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.42);
  backdrop-filter: blur(10px);
}

body.admin-unlocked .waitlist-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  min-height: 382px;
  padding: 0;
  overflow: hidden;
  background: #fbfaf6;
  border: 1px solid rgba(16, 16, 15, 0.12);
  box-shadow: 0 26px 88px rgba(16, 16, 15, 0.2);
}

body.admin-unlocked .waitlist-modal__brand {
  position: relative;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: #efeee9;
  border-right: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .waitlist-modal__brand::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 16, 15, 0.22);
}

body.admin-unlocked .waitlist-modal__brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 31%;
  filter: saturate(0.88) contrast(1.04);
}

body.admin-unlocked .waitlist-modal__mark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}

body.admin-unlocked .waitlist-modal__mark img {
  width: clamp(54px, 8vw, 82px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 14px 34px rgba(0, 0, 0, 0.28));
  opacity: 1;
}

body.admin-unlocked .waitlist-modal__content {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
}

body.admin-unlocked .waitlist-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  border: 0;
  background: transparent;
  color: rgba(16, 16, 15, 0.62);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

body.admin-unlocked .waitlist-modal h2 {
  max-width: 360px;
  margin: 0 0 12px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
}

body.admin-unlocked .waitlist-modal p:not(.eyebrow) {
  max-width: 390px;
  color: rgba(16, 16, 15, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

body.admin-unlocked .waitlist-modal .waitlist-modal__discount {
  width: fit-content;
  max-width: 100%;
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  color: rgba(16, 16, 15, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

body.admin-unlocked .waitlist-modal__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 22px;
}

body.admin-unlocked .waitlist-modal__form input {
  min-width: 0;
}

body.admin-unlocked .waitlist-modal__form .button {
  width: 100%;
}

body.admin-unlocked .waitlist-modal__consent {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 2px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 10.5px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

body.admin-unlocked .waitlist-modal__consent input {
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

body.admin-unlocked .waitlist-modal__consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.admin-unlocked .waitlist-modal__decline {
  width: fit-content;
  margin-top: 14px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(16, 16, 15, 0.56);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

body.admin-unlocked .waitlist-modal__decline:hover,
body.admin-unlocked .waitlist-modal__decline:focus-visible {
  color: var(--ink);
}

body.admin-unlocked .waitlist-modal__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: rgba(16, 16, 15, 0.54);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.cart-open {
  overflow: hidden;
}

body.admin-unlocked .cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(392px, 438px);
}

body.admin-unlocked .cart-drawer[hidden] {
  display: none;
}

body.admin-unlocked .cart-drawer__backdrop {
  grid-column: 1 / -1;
  grid-row: 1;
  border: 0;
  background: rgba(16, 16, 15, 0.54);
  cursor: pointer;
}

body.admin-unlocked .cart-drawer__panel {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-primary);
  letter-spacing: 0.01em;
  overflow: hidden;
  box-shadow: -8px 0 24px rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .cart-drawer__panel,
body.admin-unlocked .cart-drawer__panel * {
  box-sizing: border-box;
}

body.admin-unlocked .cart-drawer--empty .cart-drawer__panel {
  grid-template-rows: auto auto auto minmax(0, 1fr);
}

body.admin-unlocked .cart-drawer__header {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 0;
}

body.admin-unlocked .cart-drawer__header h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.admin-unlocked .cart-drawer__header h2 span {
  color: rgba(16, 16, 15, 0.48);
  font-size: 11px;
  letter-spacing: 0.06em;
}

body.admin-unlocked .cart-drawer__close {
  width: 30px;
  height: 30px;
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

body.admin-unlocked .cart-drawer__close::before,
body.admin-unlocked .cart-drawer__close::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 14px;
  height: 1px;
  background: currentColor;
}

body.admin-unlocked .cart-drawer__close::before {
  transform: rotate(45deg);
}

body.admin-unlocked .cart-drawer__close::after {
  transform: rotate(-45deg);
}

body.admin-unlocked .cart-drawer__unlock {
  padding: 2px 18px 0;
  border-top: 1px solid rgba(16, 16, 15, 0.045);
  border-bottom: 1px solid rgba(16, 16, 15, 0.07);
  background: rgba(250, 250, 248, 0.72);
}

body.admin-unlocked .cart-drawer__unlock div {
  min-height: 30px;
  display: grid;
  align-content: start;
  justify-content: stretch;
  gap: 2px;
  padding: 7px 0 9px;
  font-size: 12px;
}

body.admin-unlocked .cart-drawer__unlock span[data-cart-unlock-text] {
  color: rgba(16, 16, 15, 0.88);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

body.admin-unlocked .cart-drawer__unlock small {
  color: rgba(16, 16, 15, 0.54);
  font-size: 10px;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

body.admin-unlocked .cart-drawer__unlock > span {
  display: block;
  height: 1px;
  margin: 0 -18px;
  background: linear-gradient(90deg, rgba(16, 16, 15, 0.8) var(--cart-progress, 0%), rgba(16, 16, 15, 0.1) var(--cart-progress, 0%));
}

body.admin-unlocked .cart-drawer__perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  background: #f7f7f5;
}

body.admin-unlocked .cart-drawer__perks > span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  color: rgba(16, 16, 15, 0.68);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

body.admin-unlocked .cart-drawer__perks > span + span {
  border-left: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .cart-drawer__perks svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.admin-unlocked .cart-drawer__body {
  width: 100%;
  min-width: 0;
  overflow: auto;
  background: #fff;
}

body.admin-unlocked .cart-empty {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 36px 22px 82px;
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}

body.admin-unlocked .cart-empty p {
  margin: 0;
}

body.admin-unlocked .cart-empty a {
  width: max-content;
  min-width: 144px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

body.admin-unlocked .cart-empty a:hover,
body.admin-unlocked .cart-empty a:focus-visible {
  background: #fff;
  color: var(--ink);
  outline: 1px solid var(--ink);
}

body.admin-unlocked .cart-drawer--empty .cart-recommendations,
body.admin-unlocked .cart-drawer--empty .cart-drawer__footer {
  display: none;
}

body.admin-unlocked .cart-line {
  width: 100%;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.05);
}

body.admin-unlocked .cart-line__image {
  display: block;
  background: #f2f2f1;
}

body.admin-unlocked .cart-line__image img {
  width: 100%;
  aspect-ratio: 1 / 1.3;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

body.admin-unlocked .cart-line__main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
}

body.admin-unlocked .cart-line__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: start;
}

body.admin-unlocked .cart-line__top a {
  color: var(--ink);
  font-family: inherit;
  display: grid;
  gap: 4px;
  text-transform: uppercase;
}

body.admin-unlocked .cart-line__top a span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

body.admin-unlocked .cart-line__top a small {
  color: rgba(16, 16, 15, 0.56);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}

body.admin-unlocked .cart-line__main p {
  margin: 0;
  color: rgba(16, 16, 15, 0.72);
  font-size: 11px;
  line-height: 1;
}

body.admin-unlocked .cart-line__actions {
  display: grid;
  grid-template-columns: auto 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

body.admin-unlocked .cart-qty {
  width: 76px;
  height: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.18);
}

body.admin-unlocked .cart-qty button,
body.admin-unlocked .cart-remove {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
}

body.admin-unlocked .cart-qty button,
body.admin-unlocked .cart-qty span {
  display: grid;
  place-items: center;
  font-size: 12px;
}

body.admin-unlocked .cart-qty svg {
  width: 10px;
  height: 10px;
}

body.admin-unlocked .cart-remove {
  justify-self: end;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: rgba(16, 16, 15, 0.58);
}

body.admin-unlocked .cart-remove svg {
  width: 14px;
  height: 14px;
}

body.admin-unlocked .cart-line__actions strong {
  justify-self: end;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body.admin-unlocked .cart-note {
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .cart-note summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

body.admin-unlocked .cart-note summary::-webkit-details-marker {
  display: none;
}

body.admin-unlocked .cart-note summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

body.admin-unlocked .cart-note[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

body.admin-unlocked .cart-note textarea {
  width: calc(100% - 36px);
  margin: 0 18px 16px;
  padding: 10px;
  border: 1px solid rgba(16, 16, 15, 0.14);
  resize: vertical;
  font-family: inherit;
  font-size: 12px;
}

body.admin-unlocked .cart-recommendations {
  width: 100%;
  min-width: 0;
  padding: 46px 0 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .cart-recommendations__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 0 18px 18px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .cart-recommendations__head h3 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.admin-unlocked .cart-recommendations__head span {
  color: rgba(16, 16, 15, 0.42);
  font-size: 10px;
  white-space: nowrap;
}

body.admin-unlocked .cart-recommendations__grid {
  width: 100%;
  max-width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  gap: 0;
}

body.admin-unlocked .cart-recommendation {
  min-width: 154px;
  width: 154px;
  display: grid;
  border-right: 1px solid rgba(16, 16, 15, 0.08);
  scroll-snap-align: start;
}

body.admin-unlocked .cart-recommendation a {
  min-width: 0;
  display: grid;
  gap: 0;
  color: var(--ink);
}

body.admin-unlocked .cart-recommendation img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  display: block;
  background: #f2f2f1;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 18px;
}

body.admin-unlocked .cart-recommendation span,
body.admin-unlocked .cart-recommendation small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.admin-unlocked .cart-recommendation span {
  padding: 12px 12px 0;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.admin-unlocked .cart-recommendation small {
  padding: 2px 12px 13px;
  color: rgba(16, 16, 15, 0.52);
  font-size: 10px;
}

body.admin-unlocked .cart-recommendation button {
  position: absolute;
  width: 28px;
  height: 28px;
  right: 8px;
  top: 132px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: transparent;
  font-family: inherit;
  cursor: pointer;
}

body.admin-unlocked .cart-recommendation {
  position: relative;
}

body.admin-unlocked .cart-recommendation button::before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background: currentColor;
  color: var(--ink);
  mask: url("icons/bag.svg") center / contain no-repeat;
}

body.admin-unlocked .cart-recommendation button:hover,
body.admin-unlocked .cart-recommendation button:focus-visible {
  opacity: 0.6;
}

body.admin-unlocked .cart-drawer__footer {
  align-self: end;
  padding: 20px 22px 18px;
  background: #fff;
  border-top: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .cart-checkout-message {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 16, 15, 0.14);
  background: #f7f7f5;
  color: rgba(16, 16, 15, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

body.admin-unlocked .cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 9px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 12px;
}

body.admin-unlocked .cart-summary-row[hidden] {
  display: none;
}

body.admin-unlocked .cart-summary-row span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .cart-summary-row strong {
  font-size: 13px;
  font-weight: 500;
}

body.admin-unlocked .cart-summary-row--discount {
  color: #2f6d45;
}

body.admin-unlocked .cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 3px;
  padding-top: 0;
  border-top: 0;
}

body.admin-unlocked .cart-total-row span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.admin-unlocked .cart-total-row strong {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

body.admin-unlocked .cart-drawer__footer p {
  margin: 0 0 18px;
  color: rgba(16, 16, 15, 0.34);
  font-size: 10px;
  text-align: right;
}

body.admin-unlocked .cart-checkout-button {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

body.admin-unlocked .cart-checkout-button:hover,
body.admin-unlocked .cart-checkout-button:focus-visible {
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .cart-payment-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

body.admin-unlocked .cart-payment-badges span {
  width: 34px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.12);
  border-radius: 2px;
  background: #fff;
}

body.admin-unlocked .cart-payment-badges img {
  max-width: 27px;
  max-height: 14px;
  display: block;
}

body.quick-add-open {
  overflow: hidden;
}

body.stock-notify-open {
  overflow: hidden;
}

body.admin-unlocked .stock-notify-modal {
  position: fixed;
  inset: 0;
  z-index: 98;
  display: grid;
  place-items: center;
  padding: 18px;
}

body.admin-unlocked .stock-notify-modal[hidden] {
  display: none;
}

body.admin-unlocked .stock-notify-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.48);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

body.admin-unlocked .stock-notify-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(500px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 28px));
  overflow: auto;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 15, 0.12);
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

body.admin-unlocked .stock-notify-modal__head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 26px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.12);
}

body.admin-unlocked .stock-notify-modal__head h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.admin-unlocked .stock-notify-modal__close {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

body.admin-unlocked .stock-notify-modal__close::before,
body.admin-unlocked .stock-notify-modal__close::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  width: 16px;
  height: 1px;
  background: currentColor;
}

body.admin-unlocked .stock-notify-modal__close::before {
  transform: rotate(45deg);
}

body.admin-unlocked .stock-notify-modal__close::after {
  transform: rotate(-45deg);
}

body.admin-unlocked .stock-notify-form {
  display: grid;
  gap: 14px;
  padding: 22px 26px 26px;
}

body.admin-unlocked .stock-notify-form p,
body.admin-unlocked .stock-notify-form strong {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(16, 16, 15, 0.82);
}

body.admin-unlocked .stock-notify-form strong {
  font-size: 15px;
  color: rgba(16, 16, 15, 0.94);
}

body.admin-unlocked .stock-notify-form input[type="text"],
body.admin-unlocked .stock-notify-form input[type="email"] {
  width: 100%;
  min-height: 38px;
  box-sizing: border-box;
  border: 1px solid rgba(16, 16, 15, 0.16);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 0 12px;
}

body.admin-unlocked .stock-notify-form input[readonly] {
  color: rgba(16, 16, 15, 0.76);
}

body.admin-unlocked .stock-notify-form__checkbox {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: rgba(16, 16, 15, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

body.admin-unlocked .stock-notify-form__checkbox input {
  width: 14px;
  height: 14px;
  margin: 3px 0 0;
  accent-color: var(--ink);
}

body.admin-unlocked .stock-notify-form button[type="submit"] {
  min-height: 52px;
  margin-top: 2px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  transition: background 0.18s ease, color 0.18s ease;
}

body.admin-unlocked .stock-notify-form button[type="submit"]:hover,
body.admin-unlocked .stock-notify-form button[type="submit"]:focus-visible {
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .stock-notify-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

body.admin-unlocked .stock-notify-form__status {
  min-height: 20px;
  padding-top: 8px;
  font-size: 12px;
  color: rgba(16, 16, 15, 0.64);
}

body.admin-unlocked .quick-add-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
}

body.admin-unlocked .quick-add-modal[hidden] {
  display: none;
}

body.admin-unlocked .quick-add-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.42);
  cursor: pointer;
}

body.admin-unlocked .quick-add-modal__panel {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100vw - 48px));
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 5.2vw, 74px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

body.admin-unlocked .quick-add-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.admin-unlocked .quick-add-modal__close::before,
body.admin-unlocked .quick-add-modal__close::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 14px;
  width: 16px;
  height: 1px;
  background: currentColor;
}

body.admin-unlocked .quick-add-modal__close::before {
  transform: rotate(45deg);
}

body.admin-unlocked .quick-add-modal__close::after {
  transform: rotate(-45deg);
}

body.admin-unlocked .quick-add-modal__media {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  overflow: hidden;
  background: var(--product-surface);
}

body.admin-unlocked .quick-add-modal__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(20px, 4vw, 34px);
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  display: block;
}

body.admin-unlocked .quick-add-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

body.admin-unlocked .quick-add-modal__nav[hidden] {
  display: none;
}

body.admin-unlocked .quick-add-modal__nav:hover,
body.admin-unlocked .quick-add-modal__nav:focus-visible {
  background: #fff;
  border-color: rgba(16, 16, 15, 0.18);
}

body.admin-unlocked .quick-add-modal__nav:active {
  transform: translateY(-50%) scale(0.96);
}

body.admin-unlocked .quick-add-modal__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
}

body.admin-unlocked .quick-add-modal__nav--prev {
  left: 12px;
}

body.admin-unlocked .quick-add-modal__nav--next {
  right: 12px;
}

body.admin-unlocked .quick-add-modal__nav--prev::before {
  transform: rotate(-135deg);
}

body.admin-unlocked .quick-add-modal__nav--next::before {
  transform: rotate(45deg);
}

body.admin-unlocked .outfit-lightbox {
  position: fixed;
  inset: 0;
  z-index: 98;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 36px);
}

body.admin-unlocked .outfit-lightbox[hidden] {
  display: none;
}

body.admin-unlocked .outfit-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.72);
  backdrop-filter: blur(5px);
  cursor: zoom-out;
}

body.admin-unlocked .outfit-lightbox__panel {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: calc(100vw - 32px);
  max-height: calc(100svh - 32px);
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
}

body.admin-unlocked .outfit-lightbox__panel img {
  width: auto;
  max-width: calc(100vw - 32px);
  max-height: calc(100svh - 32px);
  display: block;
  object-fit: contain;
  background: transparent;
}

body.admin-unlocked .outfit-lightbox__close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #151515;
  cursor: pointer;
  border-radius: 999px;
}

body.admin-unlocked .outfit-lightbox__close::before,
body.admin-unlocked .outfit-lightbox__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

body.admin-unlocked .outfit-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.admin-unlocked .outfit-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.admin-unlocked .quick-add-modal__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 12px;
}

body.admin-unlocked .quick-add-modal__dots[hidden] {
  display: none;
}

body.admin-unlocked .quick-add-modal__dots button {
  width: 5px;
  height: 5px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(16, 16, 15, 0.28);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}

body.admin-unlocked .quick-add-modal__dots button.is-active {
  width: 16px;
  background: var(--ink);
}

body.admin-unlocked .quick-add-modal__content {
  display: grid;
  gap: 14px;
  align-content: center;
}

body.admin-unlocked .quick-add-modal__eyebrow {
  margin: 0 0 2px;
  color: rgba(16, 16, 15, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.admin-unlocked .quick-add-modal__content h2,
body.admin-unlocked .quick-add-modal__price {
  margin: 0;
  color: rgba(16, 16, 15, 0.92);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

body.admin-unlocked .quick-add-modal__price {
  color: rgba(16, 16, 15, 0.62);
  text-transform: none;
}

body.admin-unlocked .quick-add-modal__sizes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 16px;
}

body.admin-unlocked .quick-add-modal__sizes button {
  min-height: 34px;
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: #fff;
  color: rgba(16, 16, 15, 0.8);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

body.admin-unlocked .quick-add-modal__sizes button.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

body.admin-unlocked .quick-add-modal__sizes button:disabled,
body.admin-unlocked .quick-add-modal__sizes button.is-sold-out {
  position: relative;
  color: rgba(16, 16, 15, 0.28);
  background: #fff;
  border-color: rgba(16, 16, 15, 0.1);
  cursor: not-allowed;
}

body.admin-unlocked .quick-add-modal__sizes button:disabled::after,
body.admin-unlocked .quick-add-modal__sizes button.is-sold-out::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(16, 16, 15, 0.24);
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}

body.admin-unlocked .quick-add-modal__cart {
  min-height: 42px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.admin-unlocked .quick-add-modal__cart:hover,
body.admin-unlocked .quick-add-modal__cart:focus-visible {
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .quick-add-modal__cart:disabled,
body.admin-unlocked .quick-add-modal__cart.is-sold-out {
  background: rgba(16, 16, 15, 0.18);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: not-allowed;
}

body.admin-unlocked .quick-add-modal__cart:disabled:hover,
body.admin-unlocked .quick-add-modal__cart.is-sold-out:hover {
  background: rgba(16, 16, 15, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

body.admin-unlocked .quick-add-modal__details {
  width: fit-content;
  margin-top: 14px;
  color: var(--ink);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.admin-unlocked .account-drawer {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  pointer-events: none;
}

body.admin-unlocked .account-drawer[hidden] {
  display: none;
}

body.admin-unlocked .account-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.32);
  backdrop-filter: blur(3px);
  cursor: pointer;
  pointer-events: auto;
}

body.admin-unlocked .account-drawer__panel {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 36px));
  min-height: 0;
  max-height: min(88svh, 660px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(16, 16, 15, 0.18);
  pointer-events: auto;
}

body.admin-unlocked .account-drawer__header {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .account-drawer__header h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.admin-unlocked .account-drawer__close {
  width: 30px;
  height: 30px;
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

body.admin-unlocked .account-drawer__close::before,
body.admin-unlocked .account-drawer__close::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 14px;
  height: 1px;
  background: currentColor;
}

body.admin-unlocked .account-drawer__close::before {
  transform: rotate(45deg);
}

body.admin-unlocked .account-drawer__close::after {
  transform: rotate(-45deg);
}

body.admin-unlocked .account-drawer__body {
  overflow: auto;
  padding: 22px 20px 24px;
}

body.admin-unlocked .account-auth,
body.admin-unlocked .account-profile {
  display: grid;
  gap: 16px;
  font-family: var(--font-primary);
  letter-spacing: 0.01em;
}

body.admin-unlocked .account-profile[hidden],
body.admin-unlocked .account-auth[hidden] {
  display: none;
}

body.admin-unlocked .account-auth__intro {
  display: grid;
  gap: 6px;
}

body.admin-unlocked .account-profile__eyebrow {
  margin: 0;
  color: rgba(16, 16, 15, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.admin-unlocked .account-auth__intro p {
  margin: 0;
  color: rgba(16, 16, 15, 0.58);
  font-size: 13px;
  line-height: 1.35;
}

body.admin-unlocked .account-auth__intro h3,
body.admin-unlocked .account-profile h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.02em;
}

body.admin-unlocked .account-form,
body.admin-unlocked .account-profile__form {
  display: grid;
  gap: 12px;
}

body.admin-unlocked .account-form label,
body.admin-unlocked .account-profile__form label {
  display: grid;
  gap: 7px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .account-form input:not([type="checkbox"]),
body.admin-unlocked .account-profile__form input[type="text"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 16, 15, 0.16);
  border-radius: 6px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

body.admin-unlocked .account-form input:not([type="checkbox"]):focus,
body.admin-unlocked .account-profile__form input[type="text"]:focus {
  outline: 1px solid var(--ink);
  outline-offset: 0;
}

body.admin-unlocked .account-auth__switch,
body.admin-unlocked .account-signout {
  justify-self: start;
  border: 0;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: rgba(16, 16, 15, 0.72);
  font-size: 12px;
  cursor: pointer;
}

body.admin-unlocked .account-menu {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .account-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  color: var(--ink);
  font-size: 13px;
  text-decoration: none;
}

body.admin-unlocked .account-menu a:last-child {
  border-bottom: 0;
}

body.admin-unlocked .account-menu a::after {
  content: "›";
  color: rgba(16, 16, 15, 0.4);
  font-size: 18px;
  line-height: 1;
}

body.admin-unlocked .account-menu a:hover {
  color: rgba(16, 16, 15, 0.62);
}

body.admin-unlocked .account-form .button {
  min-height: 48px;
  margin-top: 2px;
}

body.admin-unlocked .account-form.is-loading {
  opacity: 0.92;
}

body.admin-unlocked .account-form.is-loading input,
body.admin-unlocked .account-form.is-loading .account-keep-signed {
  pointer-events: none;
}

body.admin-unlocked .account-process {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(244, 244, 242, 0.72);
  color: rgba(16, 16, 15, 0.76);
}

body.admin-unlocked .account-process[hidden] {
  display: none;
}

body.admin-unlocked .account-process__dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 999px;
  background: #3f8f62;
  box-shadow: 0 0 0 0 rgba(63, 143, 98, 0.38);
  animation: accountPulse 1.15s ease-in-out infinite;
}

body.admin-unlocked .account-process strong,
body.admin-unlocked .account-process small {
  display: block;
  font-size: 11px;
  line-height: 1.45;
}

body.admin-unlocked .account-process strong {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.admin-unlocked .account-process small {
  margin-top: 2px;
  color: rgba(16, 16, 15, 0.5);
}

@keyframes accountPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 143, 98, 0.38);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(63, 143, 98, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(63, 143, 98, 0);
  }
}

body.admin-unlocked .account-password-note {
  margin: -4px 0 0;
  color: rgba(16, 16, 15, 0.52);
  font-size: 12px;
  line-height: 1.45;
}

body.admin-unlocked .account-password-note[hidden] {
  display: none;
}

body.admin-unlocked .account-password-strength {
  display: grid;
  gap: 6px;
  margin: -4px 0 -2px;
}

body.admin-unlocked .account-password-strength[hidden] {
  display: none;
}

body.admin-unlocked .account-password-strength>div {
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: rgba(16, 16, 15, 0.09);
}

body.admin-unlocked .account-password-strength span {
  display: block;
  width: 0%;
  height: 100%;
  background: rgba(16, 16, 15, 0.28);
  transition: width 180ms ease, background-color 180ms ease;
}

body.admin-unlocked .account-password-strength p {
  margin: 0;
  color: rgba(16, 16, 15, 0.48);
  font-size: 11px;
  line-height: 1.35;
}

body.admin-unlocked .account-password-strength.is-weak span {
  width: 34%;
  background: #b66a5c;
}

body.admin-unlocked .account-password-strength.is-medium span {
  width: 68%;
  background: #b89a57;
}

body.admin-unlocked .account-password-strength.is-strong span {
  width: 100%;
  background: #4f8a65;
}

body.admin-unlocked .account-launch-notify,
body.admin-unlocked .account-keep-signed {
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: rgba(16, 16, 15, 0.7) !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
  line-height: 1.35;
  text-transform: none !important;
}

body.admin-unlocked .account-launch-notify+.account-keep-signed {
  margin-top: -6px;
}

body.admin-unlocked .account-launch-notify[hidden] {
  display: none;
}

body.admin-unlocked .account-launch-notify input,
body.admin-unlocked .account-keep-signed input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--ink);
}

body.admin-unlocked .account-profile__check {
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: rgba(16, 16, 15, 0.68);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

body.admin-unlocked .account-profile__check input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

body.admin-unlocked .account-profile__section {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .account-profile__section h4 {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.admin-unlocked .account-profile__section p,
body.admin-unlocked .account-status {
  margin: 0;
  color: rgba(16, 16, 15, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

body.admin-unlocked .account-status:empty {
  display: none;
}

body.admin-unlocked .account-page {
  margin-top: 95px;
  min-height: 72vh;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 92px) clamp(74px, 8vw, 120px);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-primary);
  letter-spacing: 0.01em;
}

body.admin-unlocked .account-page h1,
body.admin-unlocked .account-page h2,
body.admin-unlocked .account-page h3,
body.admin-unlocked .account-page button,
body.admin-unlocked .account-page input,
body.admin-unlocked .account-page a,
body.admin-unlocked .account-page p,
body.admin-unlocked .account-page strong,
body.admin-unlocked .account-page span {
  font-family: var(--font-primary);
}

body.admin-unlocked .account-page__signed-out {
  position: relative;
  width: min(560px, 100%);
  min-height: calc(100svh - 148px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: clamp(28px, 5vh, 54px);
  background: transparent;
  border: 0;
  text-align: left;
}

body.admin-unlocked .account-page__signin-card,
body.admin-unlocked .account-page__benefits {
  background: #fff;
}

body.admin-unlocked .account-page__logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(260px, 62vw);
  text-decoration: none;
}

body.admin-unlocked .account-page__logo img {
  display: block;
  width: 100%;
  height: auto;
}

body.admin-unlocked .account-auth--page {
  width: min(376px, 100%);
  justify-self: center;
}

body.admin-unlocked .account-page__signin-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  min-height: 0;
  padding: clamp(42px, 6vw, 82px) clamp(20px, 5vw, 70px) clamp(34px, 4vw, 54px);
}

body.admin-unlocked .account-page__signed-out[hidden],
body.admin-unlocked .account-page__layout[hidden] {
  display: none;
}

body.admin-unlocked .account-page__signed-out h1 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}

body.admin-unlocked .account-page__signed-out .eyebrow {
  margin: 0 0 5px;
  color: rgba(16, 16, 15, 0.46);
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

body.admin-unlocked .account-page__signed-out p:not(.eyebrow) {
  margin: 0;
  max-width: none;
  color: rgba(16, 16, 15, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

body.admin-unlocked .account-page__signed-out .button {
  width: 100%;
  min-height: 50px;
  justify-self: stretch;
  margin-top: 0;
}

body.admin-unlocked .account-auth--page .account-auth__intro {
  margin: 0 0 22px;
}

body.admin-unlocked .account-auth--page .account-form {
  gap: 12px;
}

body.admin-unlocked .account-auth--page .account-form label:not(.account-launch-notify):not(.account-keep-signed)>span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.admin-unlocked .account-auth--page .account-form input:not([type="checkbox"]) {
  min-height: 52px;
  padding: 0 12px;
  background: #fff;
}

body.admin-unlocked .account-auth--page .account-form label:first-child {
  position: relative;
}

body.admin-unlocked .account-auth--page .account-form label:first-child::after {
  content: none;
}

body.admin-unlocked .account-auth--page .account-auth__switch {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  border: 1px solid rgba(16, 16, 15, 0.18);
}

body.admin-unlocked .account-page__privacy {
  justify-self: center;
  align-self: end;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}

body.admin-unlocked .account-page__privacy:hover,
body.admin-unlocked .account-page__privacy:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.admin-unlocked .account-page__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: stretch;
  min-height: 0;
  overflow: visible;
  background: #fff;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .account-page__benefits article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 0;
  padding: 28px 26px 32px;
  border-right: 1px solid rgba(16, 16, 15, 0.1);
  border-bottom: 0;
  text-align: center;
}

body.admin-unlocked .account-page__benefits article:last-child {
  border-right: 0;
}

body.admin-unlocked .account-page__benefits span {
  color: rgba(16, 16, 15, 0.38);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

body.admin-unlocked .account-page__benefits strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.admin-unlocked .account-page__signed-out .account-page__benefits p {
  margin: 0;
  max-width: 220px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

body.admin-unlocked .account-page__layout {
  width: min(1228px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 258px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 86px);
  padding-top: clamp(12px, 3vw, 34px);
}

body.admin-unlocked .account-page__sidebar {
  align-self: start;
  display: grid;
  background: transparent;
  border-top: 1px solid rgba(16, 16, 15, 0.14);
  border-bottom: 0;
  text-align: left;
}

body.admin-unlocked .account-page__mark {
  margin: 0;
  padding: 30px 0 10px;
  color: rgba(16, 16, 15, 0.44);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
}

body.admin-unlocked .account-page__sidebar h1 {
  margin: 0;
  padding: 0;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
}

body.admin-unlocked .account-page__sidebar>p:nth-of-type(2) {
  margin: 0;
  padding: 12px 0 38px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 12px;
  text-align: left;
}

body.admin-unlocked .account-page__nav {
  display: grid;
  justify-content: stretch;
  gap: 0;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  padding: 0;
}

body.admin-unlocked .account-page__nav a,
body.admin-unlocked .account-page__signout {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  background: transparent;
  color: rgba(16, 16, 15, 0.68);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

body.admin-unlocked .account-page__nav a::after {
  content: none;
}

body.admin-unlocked .account-page__nav a[aria-current],
body.admin-unlocked .account-page__nav a:hover,
body.admin-unlocked .account-page__signout:hover {
  color: var(--ink);
}

body.admin-unlocked .account-page__nav a[aria-current]::after,
body.admin-unlocked .account-page__nav a:hover::after {
  content: none;
}

body.admin-unlocked .account-page__nav a[aria-current],
body.admin-unlocked .account-page__nav a:hover {
  border-bottom-color: rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .account-page__signout {
  justify-self: stretch;
  width: auto;
  min-height: 54px;
  margin: 0;
  color: rgba(16, 16, 15, 0.48);
}

body.admin-unlocked .account-page__main {
  display: grid;
  align-content: start;
  gap: 22px;
  padding-top: 10px;
}

body.admin-unlocked .account-page__overview {
  display: grid;
  gap: 10px;
  padding: 6px 0 22px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.14);
}

body.admin-unlocked .account-page__overview span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.admin-unlocked .account-page__overview p {
  width: min(560px, 100%);
  margin: 0;
  color: rgba(16, 16, 15, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

body.admin-unlocked .account-page__panel {
  display: grid;
  gap: 0;
  background: transparent;
  min-height: 300px;
  border-top: 0;
  border-bottom: 0;
}

body.admin-unlocked .account-page__panel[hidden] {
  display: none;
}

body.admin-unlocked .account-page__panel header {
  padding: 24px 0 16px;
}

body.admin-unlocked .account-page__panel h2 {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.14);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.admin-unlocked .account-page__empty {
  min-height: 184px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 30px 0;
  text-align: center;
  background: rgba(16, 16, 15, 0.018);
}

body.admin-unlocked .account-page__empty p {
  margin: 0;
  color: rgba(16, 16, 15, 0.62);
  font-size: 13px;
}

body.admin-unlocked .account-page__empty a {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

body.admin-unlocked .account-page__pager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  margin: 36px 0 0;
  border-top: 1px solid rgba(16, 16, 15, 0.14);
  border-bottom: 1px solid rgba(16, 16, 15, 0.14);
  color: rgba(16, 16, 15, 0.38);
  padding: 0;
}

body.admin-unlocked .account-page__pager strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

body.admin-unlocked .account-page__pager span:last-child {
  justify-self: end;
}

body.admin-unlocked .account-page__form {
  display: grid;
  gap: 16px;
  padding: 4px 0 34px;
  max-width: 560px;
}

body.admin-unlocked .account-page__form label {
  display: grid;
  gap: 7px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .account-page__form input[type="text"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 16, 15, 0.16);
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

body.admin-unlocked .account-page__check {
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  color: rgba(16, 16, 15, 0.64) !important;
  font-size: 12px !important;
  line-height: 1.4;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.admin-unlocked .account-page__check input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

body.admin-unlocked .shop-search-panel,
body.admin-unlocked .shop-filter-panel {
  position: fixed;
  inset: 0;
  z-index: 79;
}

body.admin-unlocked .shop-search-panel {
  display: grid;
  place-items: start center;
  padding-top: clamp(110px, 15vh, 150px);
}

body.admin-unlocked .shop-filter-panel {
  inset: var(--filter-top, 176px) max(18px, var(--filter-right, 18px)) auto auto;
  width: min(340px, calc(100vw - 36px));
  pointer-events: none;
}

body.admin-unlocked .shop-search-panel[hidden],
body.admin-unlocked .shop-filter-panel[hidden] {
  display: none !important;
}

body.admin-unlocked .shop-filter-panel__backdrop {
  display: none;
}

body.admin-unlocked .shop-search-panel__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.42);
  cursor: pointer;
}

body.admin-unlocked .shop-search-panel__dialog {
  position: relative;
  z-index: 1;
  width: min(672px, calc(100vw - 40px));
  box-sizing: border-box;
  max-height: min(680px, calc(100svh - 96px));
  overflow: auto;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 72px rgba(16, 16, 15, 0.18);
  animation: searchModalIn 0.18s ease-out both;
}

body.admin-unlocked .shop-search-panel__bar {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: #fff;
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .shop-search-panel__bar img {
  width: 17px;
  height: 17px;
}

body.admin-unlocked .shop-search-panel__bar input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

body.admin-unlocked .shop-search-panel__bar button,
body.admin-unlocked .filter-drawer-head button {
  position: relative;
  width: 26px;
  height: 26px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(16, 16, 15, 0.64);
  cursor: pointer;
}

body.admin-unlocked .filter-drawer-head button {
  width: auto;
  height: auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .shop-search-panel__bar button::before,
body.admin-unlocked .shop-search-panel__bar button::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 14px;
  height: 1px;
  background: currentColor;
}

body.admin-unlocked .shop-search-panel__bar button::before {
  transform: rotate(45deg);
}

body.admin-unlocked .shop-search-panel__bar button::after {
  transform: rotate(-45deg);
}

body.admin-unlocked .shop-search-panel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 12px;
  color: rgba(16, 16, 15, 0.72);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.admin-unlocked .shop-search-panel__meta a {
  color: rgba(16, 16, 15, 0.54);
  font-size: 10px;
}

body.admin-unlocked .shop-search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 20px 26px;
}

body.admin-unlocked .shop-search-result {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: var(--ink);
}

body.admin-unlocked .shop-search-result img {
  width: 100%;
  aspect-ratio: 1 / 1.24;
  display: block;
  background: #f1f1f0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

body.admin-unlocked .shop-search-result span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.admin-unlocked .shop-search-result small {
  color: rgba(16, 16, 15, 0.58);
  font-size: 11px;
  line-height: 1.3;
}

body.privacy-modal-open {
  overflow: hidden;
}

body.admin-unlocked .privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 118;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

body.admin-unlocked .privacy-modal[hidden] {
  display: none !important;
}

body.admin-unlocked .privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.42);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

body.admin-unlocked .privacy-modal__panel {
  font-family: var(--font-primary);
  position: relative;
  z-index: 1;
  width: min(500px, calc(100vw - 34px));
  max-height: min(730px, calc(100svh - 42px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 15, 0.12);
  box-shadow: 0 24px 80px rgba(16, 16, 15, 0.2);
  animation: searchModalIn 0.18s ease-out both;
}

body.admin-unlocked .privacy-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 10px;
  border-bottom: 0;
}

body.admin-unlocked .privacy-modal__header p {
  margin: 0 0 5px;
  color: rgba(16, 16, 15, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.admin-unlocked .privacy-modal__header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

body.admin-unlocked .privacy-modal__close {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

body.admin-unlocked .privacy-modal__body {
  overflow: auto;
  padding: 4px 20px 22px;
  scrollbar-color: rgba(16, 16, 15, 0.38) transparent;
  scrollbar-width: thin;
}

body.admin-unlocked .privacy-modal__body::-webkit-scrollbar {
  width: 8px;
}

body.admin-unlocked .privacy-modal__body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(16, 16, 15, 0.32);
}

body.admin-unlocked .privacy-modal__body h3 {
  margin: 22px 0 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.admin-unlocked .privacy-modal__body h3:first-of-type {
  margin-top: 18px;
}

body.admin-unlocked .privacy-modal__body p {
  margin: 0 0 14px;
  color: rgba(16, 16, 15, 0.62);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

body.admin-unlocked .privacy-modal__body p strong {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .privacy-modal__body a {
  color: var(--ink);
  text-underline-offset: 4px;
}

body.cookie-consent-open {
  overflow: auto;
}

body.admin-unlocked .cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 130;
  display: block;
  padding: 0;
  pointer-events: none;
}

body.admin-unlocked .cookie-consent[hidden] {
  display: none !important;
}

body.admin-unlocked .cookie-consent__backdrop {
  display: none;
}

body.admin-unlocked .cookie-consent__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  width: 100%;
  max-height: none;
  overflow: visible;
  padding: 20px clamp(22px, 4vw, 54px) calc(20px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(16, 16, 15, 0.14);
  color: var(--ink);
  font-family: var(--font-primary);
  box-shadow: 0 -8px 24px rgba(16, 16, 15, 0.07);
  pointer-events: auto;
}

body.admin-unlocked .cookie-consent.cookie-consent--preferences {
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
  pointer-events: auto;
}

body.admin-unlocked .cookie-consent.cookie-consent--preferences .cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(16, 16, 15, 0.42);
}

body.admin-unlocked .cookie-consent.cookie-consent--preferences .cookie-consent__panel {
  width: min(780px, calc(100vw - 32px));
  max-height: min(680px, calc(100svh - 40px));
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 30px clamp(22px, 4vw, 36px) 28px;
  border: 1px solid rgba(16, 16, 15, 0.14);
  box-shadow: 0 18px 48px rgba(16, 16, 15, 0.18);
  animation: searchModalIn 0.14s ease-out both;
}

body.admin-unlocked .cookie-consent__summary,
body.admin-unlocked .cookie-consent__preferences {
  display: grid;
  gap: 8px;
}

body.admin-unlocked .cookie-consent__summary[hidden],
body.admin-unlocked .cookie-consent__preferences[hidden] {
  display: none !important;
}

body.admin-unlocked .cookie-consent h2 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

body.admin-unlocked .cookie-consent p {
  max-width: 760px;
  margin: 0;
  color: rgba(16, 16, 15, 0.62);
  font-size: 12px;
  line-height: 1.5;
  text-transform: none;
}

body.admin-unlocked .cookie-consent p button,
body.admin-unlocked .cookie-consent__link {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

body.admin-unlocked .cookie-consent__preferences p {
  max-width: 680px;
  color: rgba(16, 16, 15, 0.62);
}

body.admin-unlocked .cookie-consent__choice {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  max-width: 620px;
  padding: 13px 0;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
  cursor: pointer;
}

body.admin-unlocked .cookie-consent__choice:last-of-type {
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .cookie-consent__choice--locked {
  cursor: default;
}

body.admin-unlocked .cookie-consent__choice input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

body.admin-unlocked .cookie-consent__choice strong,
body.admin-unlocked .cookie-consent__choice small {
  display: block;
}

body.admin-unlocked .cookie-consent__choice strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-transform: none;
}

body.admin-unlocked .cookie-consent__choice small {
  margin-top: 4px;
  color: rgba(16, 16, 15, 0.56);
  font-size: 12px;
  line-height: 1.35;
}

body.admin-unlocked .cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  min-width: min(410px, 34vw);
}

body.admin-unlocked .cookie-consent.cookie-consent--preferences .cookie-consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-width: 0;
}

body.admin-unlocked .cookie-consent__link {
  order: 3;
  color: rgba(16, 16, 15, 0.74);
  font-size: 12px;
  line-height: 1.2;
}

body.admin-unlocked .cookie-consent.cookie-consent--preferences .cookie-consent__link {
  display: none;
}

body.admin-unlocked .cookie-consent__button {
  min-height: 40px;
  border: 1px solid rgba(16, 16, 15, 0.24);
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

body.admin-unlocked .cookie-consent__button:hover,
body.admin-unlocked .cookie-consent__button:focus-visible,
body.admin-unlocked .cookie-consent__button--primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

@keyframes searchModalIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.admin-unlocked .shop-filter-panel__drawer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(620px, calc(100svh - var(--filter-top, 176px) - 18px));
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  background: var(--ivory);
  border: 1px solid rgba(16, 16, 15, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
  transform-origin: top right;
  animation: searchResultsIn 0.18s ease-out both;
}

body.admin-unlocked .filter-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .filter-drawer-head .eyebrow {
  margin: 0;
  color: var(--ink);
}

body.admin-unlocked .filter-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

body.admin-unlocked .filter-group p,
body.admin-unlocked .filter-price-range p {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.admin-unlocked .filter-group button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
}

body.admin-unlocked .filter-group button.filter-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

body.admin-unlocked .filter-price-range {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}

body.admin-unlocked .filter-price-range output {
  color: rgba(16, 16, 15, 0.66);
  font-size: 12px;
  font-weight: 700;
}

body.admin-unlocked .filter-price-range input[type="range"] {
  width: 100%;
  accent-color: var(--ink);
}

body.admin-unlocked .filter-price-range div {
  display: flex;
  justify-content: space-between;
  color: rgba(16, 16, 15, 0.52);
  font-size: 11px;
}

body.admin-unlocked .filter-apply {
  justify-self: stretch;
  min-height: 40px;
  margin-top: 2px;
  padding: 0 18px;
  font-size: 11px;
}

body.admin-unlocked .proof-board--shop {
  align-items: center;
}

body.admin-unlocked .size-guide {
  border-top: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .size-table {
  margin-top: 28px;
  border-top: 1px solid rgba(16, 16, 15, 0.14);
}

body.admin-unlocked .size-table [role="row"] {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr 1.4fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  color: rgba(16, 16, 15, 0.66);
}

body.admin-unlocked .size-table strong {
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.admin-unlocked .section-stores {
  border-top: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .store-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: rgba(16, 16, 15, 0.1);
  border: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .store-panel div {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--ivory);
}

body.admin-unlocked .store-panel strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.admin-unlocked .store-panel span {
  color: rgba(16, 16, 15, 0.62);
  line-height: 1.55;
}

body.admin-unlocked .site-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr) minmax(220px, 0.5fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 42px);
  background: var(--ivory);
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  color: var(--ink);
}

body.admin-unlocked .site-footer p {
  max-width: 440px;
  color: rgba(16, 16, 15, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

body.admin-unlocked .footer-brand {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-unlocked .footer-signup {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  margin-top: 24px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.16);
}

body.admin-unlocked .footer-signup input {
  min-height: 46px;
  border: 0;
  background: transparent;
  padding: 0 12px 0 0;
  color: var(--ink);
}

body.admin-unlocked .footer-signup button {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.admin-unlocked .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 70px;
  color: rgba(16, 16, 15, 0.72);
  font-size: 12px;
  font-weight: 800;
}

body.admin-unlocked .footer-social a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.admin-unlocked .footer-help {
  align-content: start;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

body.admin-unlocked .footer-help a {
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
}

body.admin-unlocked .footer-help a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.admin-unlocked .faq-page {
  margin-top: 95px;
  min-height: calc(100svh - 95px);
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .faq-page.shop-view-active {
  display: block !important;
}

body.admin-unlocked .faq-page__inner {
  width: min(820px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 56px) 0 clamp(58px, 7vw, 88px);
}

body.admin-unlocked .faq-page__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  margin: 0 0 clamp(24px, 3.4vw, 38px);
  padding-bottom: 0;
  border-bottom: 0;
  text-align: left;
}

body.admin-unlocked .faq-page h1 {
  max-width: 500px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

body.admin-unlocked .faq-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  gap: clamp(26px, 4vw, 38px);
  align-items: start;
}

body.admin-unlocked .faq-page__side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px clamp(24px, 5vw, 56px);
  align-items: center;
  padding: 22px 0 0;
  border-top: 1px solid rgba(16, 16, 15, 0.09);
}

body.admin-unlocked .faq-page__side p {
  grid-column: 1;
  margin: 0;
  color: rgba(16, 16, 15, 0.68);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

body.admin-unlocked .faq-page__side a {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: fit-content;
  color: rgba(16, 16, 15, 0.82);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.admin-unlocked .faq-page__side span {
  grid-column: 1;
  max-width: 320px;
  color: rgba(16, 16, 15, 0.54);
  font-size: 12px;
  line-height: 1.45;
}

body.admin-unlocked .faq-accordion {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
}

body.admin-unlocked .faq-section {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(106px, 132px) minmax(0, 1fr);
  column-gap: clamp(18px, 4vw, 34px);
  border-top: 1px solid rgba(16, 16, 15, 0.07);
}

body.admin-unlocked .faq-section h2 {
  margin: 0;
  padding: 22px 0 0;
  color: rgba(16, 16, 15, 0.5);
  font-family: var(--font-primary);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.admin-unlocked .faq-accordion details {
  grid-column: 2;
  border-top: 1px solid rgba(16, 16, 15, 0.075);
}

body.admin-unlocked .faq-section h2+details {
  border-top: 0;
}

body.admin-unlocked .faq-accordion details:last-child {
  border-bottom: 0;
}

body.admin-unlocked .faq-accordion summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(16, 16, 15, 0.86);
  cursor: pointer;
  list-style: none;
  font-size: 13.25px;
  font-weight: 500;
  letter-spacing: 0;
}

body.admin-unlocked .faq-accordion summary::-webkit-details-marker {
  display: none;
}

body.admin-unlocked .faq-accordion summary::after {
  content: "+";
  width: auto;
  height: auto;
  border: 0;
  color: rgba(16, 16, 15, 0.34);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transform: none;
  transition: transform 0.18s ease, color 0.18s ease;
}

body.admin-unlocked .faq-accordion details[open] summary::after {
  content: "−";
  transform: none;
}

body.admin-unlocked .faq-accordion details>div {
  max-width: 520px;
  padding: 0 0 24px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 13px;
  line-height: 1.62;
}

body.admin-unlocked .faq-accordion p {
  margin: 0 0 8px;
}

body.admin-unlocked .faq-accordion p:last-child {
  margin-bottom: 0;
}

body.admin-unlocked .faq-accordion a {
  color: rgba(16, 16, 15, 0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.admin-unlocked .faq-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(760px, 100%);
  margin: clamp(36px, 4vw, 56px) 0 0 auto;
  padding: 0;
  border-top: 1px solid rgba(16, 16, 15, 0.09);
  border-bottom: 1px solid rgba(16, 16, 15, 0.09);
  text-align: left;
}

body.admin-unlocked .faq-benefits article {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  justify-items: start;
  gap: 12px;
  align-content: start;
  padding: 18px 20px;
  border-right: 1px solid rgba(16, 16, 15, 0.09);
}

body.admin-unlocked .faq-benefits article:last-child {
  border-right: 0;
}

body.admin-unlocked .faq-benefits svg {
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  color: rgba(16, 16, 15, 0.72);
}

body.admin-unlocked .faq-benefits h2 {
  grid-column: 2;
  margin: 0 0 5px;
  font-family: var(--font-primary);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 500;
}

body.admin-unlocked .faq-benefits p {
  grid-column: 2;
  max-width: 210px;
  margin: 0;
  color: rgba(16, 16, 15, 0.5);
  font-size: 11.5px;
  line-height: 1.45;
}

body.admin-unlocked .faq-service-strip {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto;
  border-top: 1px solid rgba(16, 16, 15, 0.09);
  border-bottom: 1px solid rgba(16, 16, 15, 0.09);
}

body.admin-unlocked .faq-service-strip>div {
  min-height: 78px;
  display: grid;
  grid-template-columns: 20px minmax(0, auto);
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-right: 1px solid rgba(16, 16, 15, 0.09);
}

body.admin-unlocked .faq-service-strip>div:last-child {
  border-right: 0;
}

body.admin-unlocked .faq-service-strip svg {
  width: 20px;
  height: 20px;
  color: rgba(16, 16, 15, 0.74);
}

body.admin-unlocked .faq-service-strip p {
  margin: 0;
  display: grid;
  gap: 4px;
}

body.admin-unlocked .faq-service-strip strong {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

body.admin-unlocked .faq-service-strip span {
  color: rgba(16, 16, 15, 0.46);
  font-size: 11.5px;
  line-height: 1.2;
}

body.admin-unlocked .contact-page {
  margin-top: 95px;
  min-height: calc(100svh - 95px);
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .contact-page.shop-view-active {
  display: block !important;
}

body.admin-unlocked .contact-page__inner {
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(46px, 6vw, 76px) 0 clamp(68px, 8vw, 104px);
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 520px);
  justify-content: space-between;
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}

body.admin-unlocked .contact-page__copy {
  margin-bottom: 0;
  padding-top: 0;
  border-top: 0;
  text-align: left;
}

body.admin-unlocked .contact-page__eyebrow {
  margin: 0 0 14px;
  color: rgba(16, 16, 15, 0.44);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

body.admin-unlocked .contact-page h1 {
  max-width: none;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

body.admin-unlocked .contact-page p {
  max-width: 390px;
  margin: 0;
  color: rgba(16, 16, 15, 0.66);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
}

body.admin-unlocked .contact-page a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.admin-unlocked .contact-page__details {
  display: grid;
  gap: 0;
  max-width: 420px;
  margin-top: clamp(28px, 4.5vw, 44px);
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .contact-page__details p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 15px 0;
  color: rgba(16, 16, 15, 0.74);
  font-weight: 400;
  line-height: 1.35;
}

body.admin-unlocked .contact-page__details p+p {
  border-top: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .contact-page__details span {
  color: rgba(16, 16, 15, 0.42);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

body.admin-unlocked .contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-top: 0;
  border-top: 1px solid rgba(16, 16, 15, 0.08);
}

body.admin-unlocked .contact-form__head {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  margin-bottom: 0;
  padding: 16px 0 0;
  border-bottom: 0;
}

body.admin-unlocked .contact-form__head p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

body.admin-unlocked .contact-form__head span {
  max-width: 340px;
  color: rgba(16, 16, 15, 0.46);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

body.admin-unlocked .contact-form label {
  display: grid;
  gap: 7px;
}

body.admin-unlocked .contact-form label:nth-of-type(3),
body.admin-unlocked .contact-form label:nth-of-type(4) {
  grid-column: auto;
}

body.admin-unlocked .contact-form label>span {
  color: rgba(16, 16, 15, 0.48);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.admin-unlocked .contact-form input,
body.admin-unlocked .contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.16);
  border-radius: 0;
  padding: 10px 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  outline: 0;
  transition: border-color 0.16s ease, background 0.16s ease;
}

body.admin-unlocked .contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

body.admin-unlocked .contact-form input:focus,
body.admin-unlocked .contact-form textarea:focus {
  border-color: rgba(16, 16, 15, 0.58);
  background: #fff;
}

body.admin-unlocked .contact-form button {
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

body.admin-unlocked .contact-form button:hover {
  background: #fff;
  color: var(--ink);
}

body.admin-unlocked .continue-exploring {
  display: block;
  padding: clamp(48px, 6vw, 78px) clamp(18px, 5vw, 60px) clamp(62px, 7vw, 96px);
  border-top: 1px solid rgba(16, 16, 15, 0.1);
  background: #fbfaf8;
  color: var(--ink);
  text-align: center;
}

body.admin-unlocked .continue-exploring.shop-view-active {
  display: block !important;
}

body.admin-unlocked .continue-exploring__head p {
  margin: 0 0 9px;
  color: rgba(16, 16, 15, 0.42);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.admin-unlocked .continue-exploring__head h2 {
  max-width: none;
  margin: 0 0 30px;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: clamp(24px, 1.65vw, 31px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

body.admin-unlocked .continue-exploring__grid {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(16, 16, 15, 0.09);
  background: rgba(16, 16, 15, 0.09);
}

body.admin-unlocked .continue-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 18px 20px;
  min-height: 166px;
  padding: 18px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}

body.admin-unlocked .continue-card:hover {
  background: #f5f4f1;
}

body.admin-unlocked .continue-card__media {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f2f1ef;
  overflow: hidden;
}

body.admin-unlocked .continue-card__media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.94) contrast(1.01);
  transition: transform 0.28s ease;
}

body.admin-unlocked .continue-card__media--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.admin-unlocked .continue-card:hover .continue-card__media img {
  transform: scale(1.025);
}

body.admin-unlocked .continue-card__copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

body.admin-unlocked .continue-card__copy span {
  color: rgba(16, 16, 15, 0.44);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.admin-unlocked .continue-card__copy strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: 0;
}

body.admin-unlocked .continue-card__copy small {
  max-width: 22ch;
  color: rgba(16, 16, 15, 0.58);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

body.admin-unlocked .continue-card__action {
  align-self: end;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: rgba(16, 16, 15, 0.72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

body.admin-unlocked .continue-exploring__all {
  width: fit-content;
  display: inline-flex;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: rgba(16, 16, 15, 0.78);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.admin-unlocked .legal-page {
  background: #fff;
  margin-top: 95px;
  min-height: calc(100vh - 95px);
  padding: 51px clamp(20px, 5vw, 72px) 92px;
}

body.admin-unlocked .legal-page .product-back {
  left: clamp(20px, 4vw, 58px);
  top: 108px;
}

body.admin-unlocked .legal-page__inner {
  margin: 0 auto;
  max-width: 820px;
}

body.admin-unlocked .legal-page h1 {
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: clamp(28px, 1.8vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 22px;
  text-align: left;
  text-transform: none;
}

body.admin-unlocked .legal-page__inner>p:not(.eyebrow) {
  color: rgba(16, 16, 15, 0.68);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 38px;
  max-width: 720px;
  text-align: left;
}

body.admin-unlocked .legal-copy {
  border-top: 1px solid rgba(16, 16, 15, 0.14);
}

body.admin-unlocked .legal-copy h2 {
  border-top: 1px solid rgba(16, 16, 15, 0.14);
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
  padding: 24px 0 8px;
  text-transform: none;
}

body.admin-unlocked .legal-copy h2:first-child {
  border-top: 0;
}

body.admin-unlocked .legal-copy p {
  color: rgba(16, 16, 15, 0.7);
  font-size: 13px;
  line-height: 1.58;
  margin: 0 0 18px;
  max-width: 720px;
}

body.admin-unlocked .legal-copy a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.admin-unlocked .footer-help details {
  display: none;
  align-content: start;
}

body.admin-unlocked .footer-help details {
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .footer-help summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body.admin-unlocked .footer-help summary::-webkit-details-marker {
  display: none;
}

body.admin-unlocked .footer-help summary::after {
  content: "+";
  float: right;
  font-size: 16px;
  line-height: 1;
}

body.admin-unlocked .footer-help details[open] summary::after {
  content: "-";
}

body.admin-unlocked .footer-help details p {
  margin: 0 0 16px;
  max-width: 620px;
  color: rgba(16, 16, 15, 0.62);
  font-size: 12px;
}

body.admin-unlocked .footer-payments div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

body.admin-unlocked .footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

body.admin-unlocked .footer-social a {
  width: auto;
  height: auto;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}

body.admin-unlocked .footer-social img {
  width: 18px;
  height: 18px;
}

body.admin-unlocked .footer-social a:hover {
  opacity: 0.62;
}

body.admin-unlocked .footer-payments span {
  width: 72px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0 8px;
  border: 1px solid rgba(16, 16, 15, 0.16);
  background: #fff;
}

body.admin-unlocked .footer-payments img {
  max-width: 58px;
  max-height: 20px;
  display: block;
}

@media (max-width: 840px) {
  body.admin-unlocked .site-nav {
    display: flex;
    gap: 18px;
    order: 3;
    width: 100vw;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 12px 2px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  body.admin-unlocked .site-nav::-webkit-scrollbar {
    display: none;
  }

  body.admin-unlocked .site-nav .nav-item {
    flex: 0 0 auto;
  }

  body.admin-unlocked .site-nav a {
    font-size: 10px;
  }

  body:not(.admin-unlocked) {
    overflow: hidden;
  }

  .public-gate {
    padding: 18px;
  }

  .public-gate::after {
    inset: 10px;
  }

  .public-gate__center {
    transform: translateY(0);
  }

  .public-gate__center::before {
    top: 24%;
    font-size: 180px;
  }

  .public-gate__topbar {
    top: 18px;
    left: 18px;
    right: 14px;
  }

  .public-gate__logo {
    width: 112px;
    margin-bottom: 30px;
  }

  .public-gate h1 {
    font-size: clamp(54px, 14vw, 66px);
  }

  .public-gate {
    grid-template-columns: 1fr;
  }

  .public-waitlist-form {
    grid-template-columns: 1fr;
  }

  .public-gate__right {
    display: none;
  }

  .public-gate__products {
    grid-template-columns: 1fr;
  }

  .public-gate__products span+span {
    border-left: 0;
    border-top: 1px solid rgba(16, 16, 15, 0.14);
  }


  .hero-section,
  .section-process,
  .section-lookbook,
  .about-motion,
  .section-faq,
  .proof-board,
  .product-page {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 100svh;
    align-items: flex-end;
    padding: 76px 18px 52px;
  }

  .hero-media img {
    object-position: 42% center;
  }

  .hero-section::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.84) 0%, rgba(5, 5, 5, 0.44) 45%, rgba(5, 5, 5, 0.08) 100%);
  }

  .hero-copy {
    margin: 0;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .hero-status {
    display: none;
  }

  .product-grid,
  .product-gallery,
  .fit-cards {
    grid-template-columns: 1fr;
  }

  .lookbook-media {
    min-height: 430px;
  }

  .lookbook-media img {
    min-height: 430px;
    height: 430px;
    object-position: 50% 32%;
  }

  body.admin-unlocked .lookbook-media img {
    min-height: 430px;
    height: 430px;
    object-position: 50% 40%;
  }

  .lookbook-copy {
    width: 100vw;
    padding: 34px 18px 44px;
  }

  .lookbook-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .lookbook-faq {
    gap: 14px;
    margin-top: 22px;
  }

  .lookbook-faq p {
    padding-top: 14px;
  }

  .lookbook-faq span {
    font-size: 12.5px;
    line-height: 1.52;
  }

  .about-motion {
    min-height: 460px;
    padding: 48px 18px;
  }

  .about-motion__copy {
    width: min(320px, calc(100% - 28px));
  }

  .about-motion__copy h2 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .about-motion__copy p:not(.eyebrow) {
    max-width: 260px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .about-motion__mark {
    width: 42px;
  }

  .about-motion__frame video {
    object-position: 50% 44%;
  }

  .proof-board__media {
    grid-template-columns: 1fr;
  }

  .proof-board__media img:nth-child(1),
  .proof-board__media img:nth-child(2),
  .proof-board__media img:nth-child(3) {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .site-footer {
    flex-direction: column;
  }

  .product-info {
    position: static;
  }

  body.admin-unlocked .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    min-height: 58px;
    align-items: center;
    gap: 4px 10px;
    padding: 4px 10px 5px;
  }

  .shop-announcement {
    height: 27px;
    font-size: 9.5px;
    letter-spacing: 0.095em;
    grid-template-columns: 32px minmax(0, 1fr) auto;
  }

  .shop-announcement__message {
    max-width: calc(100vw - 120px);
    padding: 0 6px;
    line-height: 27px;
  }

  .shop-announcement__arrow {
    width: 26px;
    height: 27px;
    font-size: 18px;
  }

  .shop-announcement__arrow--prev {
    margin-left: 9px;
  }

  .shop-announcement__controls {
    gap: 7px;
    padding-right: 9px;
  }

  .shop-announcement__dot {
    width: 4px;
    height: 4px;
  }

  body.admin-unlocked .site-header {
    top: 27px;
  }

  body.admin-unlocked .mega-menu {
    display: none !important;
  }

  body.admin-unlocked .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    padding: 2px 0 0;
    gap: 12px;
  }

  body.admin-unlocked .nav-item {
    min-height: 22px;
  }

  body.admin-unlocked .site-nav a {
    min-height: 20px;
    font-size: 10px;
  }

  body.admin-unlocked .brand-wordmark {
    grid-column: 1 / 3;
    grid-row: 1;
    width: clamp(150px, 46vw, 168px);
    justify-content: start;
    justify-self: start;
    min-width: 0;
    margin-bottom: 0;
  }

  body.admin-unlocked .shop-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    position: static;
    display: flex;
    gap: 2px;
    min-width: 116px;
    justify-content: flex-end;
  }

  body.admin-unlocked .currency-selector {
    min-height: 26px;
  }

  body.admin-unlocked .currency-selector__button {
    min-height: 26px;
    gap: 4px;
    padding: 0 1px;
    font-size: 10px;
  }

  body.admin-unlocked .currency-selector__mark {
    width: 14px;
    height: 14px;
    font-size: 13px;
  }

  body.admin-unlocked .country-menu {
    top: calc(100% + 13px);
    right: -76px;
    width: min(236px, calc(100vw - 8px));
  }

  body.admin-unlocked .country-menu__list {
    max-height: min(340px, 56vh);
  }

  body.admin-unlocked .country-menu__option {
    padding: 10px 40px;
    font-size: 12px;
  }

  body.admin-unlocked .shop-action-icon {
    width: 24px;
    height: 26px;
  }

  body.admin-unlocked .shop-action-icon img {
    width: 15px;
    height: 15px;
  }

  .shop-video-hero {
    min-height: 100svh;
  }

  .shop-video-hero__media {
    transform: translate(1.2%, 9.5%) scale(1.13);
    transform-origin: center center;
  }

  .shop-video-hero__media img {
    object-position: 50% top;
  }

  .shop-video-hero__copy {
    gap: 12px;
    transform: translateY(44px);
  }

  .shop-video-hero__copy p {
    font-size: 10px;
  }

  .shop-video-hero__intro {
    gap: 6px;
  }

  .shop-video-hero__intro strong {
    font-size: 18px;
  }

  .shop-video-hero__button {
    min-width: 90px;
    min-height: 30px;
    font-size: 10px;
  }

  body.admin-unlocked .home-transition {
    min-height: 38px;
  }

  body.admin-unlocked .collection-page-header {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin-top: 88px;
    padding: 17px 16px 16px;
  }

  body.admin-unlocked .collection-visual {
    margin-top: 0;
    height: 0;
  }

  body.admin-unlocked .collection-visual img {
    object-position: center 42%;
  }

  body.admin-unlocked .collection-page-header h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  body.admin-unlocked .collection-page-title p {
    margin-bottom: 4px;
    font-size: 9.5px;
  }

  body.admin-unlocked .collection-page-title span {
    margin-top: 20px;
    font-size: 10px;
  }

  body.admin-unlocked .collection-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 34px;
    gap: 10px 14px;
  }

  body.admin-unlocked .collection-toolbar__right {
    justify-self: end;
    gap: 11px;
    font-size: 9.5px;
  }

  body.admin-unlocked .collection-view-icons {
    display: none;
  }

  body.admin-unlocked .brand-page {
    margin-top: 88px;
    min-height: calc(100svh - 88px);
  }

  body.admin-unlocked .brand-page--story {
    display: block;
    min-height: 0;
    padding: 0 0 46px;
    overflow: hidden;
    background: #fff;
    border-top: 0;
  }

  body.admin-unlocked .brand-page--story::after {
    display: none;
  }

  body.admin-unlocked .story-page__media {
    order: 1;
    position: relative;
    inset: auto;
    z-index: auto;
    top: auto;
    width: 100%;
    height: min(58svh, 520px);
    min-height: 330px;
    padding: 0;
    background: #f4f4f2;
  }

  body.admin-unlocked .story-page__media-button {
    display: block;
  }

  body.admin-unlocked .story-page__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
  }

  body.admin-unlocked .story-page__copy {
    grid-area: auto;
    position: relative;
    z-index: auto;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    color: var(--ink);
    text-align: left;
  }

  body.admin-unlocked .story-page__hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 88px);
    row-gap: 0;
    margin-bottom: 34px;
    align-items: end;
    justify-items: start;
  }

  body.admin-unlocked .story-page__intro {
    width: min(312px, calc(100% - 48px));
    max-width: none;
    margin: 0 0 clamp(374px, 46vh, 420px) 24px;
    padding: 0;
    text-align: left;
    justify-items: start;
    transform: none;
  }

  body.admin-unlocked .brand-page__header h1 {
    margin-bottom: 20px;
    font-size: clamp(34px, 12vw, 48px);
  }

  body.admin-unlocked .story-page__copy h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
  }

  body.admin-unlocked .story-page__eyebrow {
    color: rgba(16, 16, 15, 0.48) !important;
    margin-bottom: 12px !important;
    font-size: 10px !important;
  }

  body.admin-unlocked .story-page__lead {
    color: #fff !important;
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.08 !important;
  }

  body.admin-unlocked .story-page__note {
    top: 26px;
    right: 18px;
    max-width: 190px;
    font-size: 10px !important;
    line-height: 1.4 !important;
  }

  body.admin-unlocked .story-page__scroll-cue {
    bottom: clamp(238px, 29vh, 286px);
    width: 40px;
    height: 40px;
  }

  body.admin-unlocked .story-page__scroll-cue span {
    width: 12px;
    height: 12px;
  }

  body.admin-unlocked .story-page__image {
    transform: scale(1.01);
  }

  body.admin-unlocked .story-page__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-position: 43% 50%;
  }

  body.admin-unlocked .story-page__image figcaption {
    margin-top: 8px;
    font-size: 10px;
  }

  body.admin-unlocked .story-page__copy p {
    color: rgba(16, 16, 15, 0.66);
    margin: 0;
    font-size: 13px;
    line-height: 1.48;
  }

  body.admin-unlocked .story-page__copy p:first-of-type {
    color: rgba(16, 16, 15, 0.82);
  }

  body.admin-unlocked .story-page__body {
    display: block;
    width: calc(100% - 36px);
    margin: 0 auto 16px;
    text-align: center;
  }

  body.admin-unlocked .story-page__body p {
    max-width: none;
    font-size: 13px;
    line-height: 1.55;
  }

  body.admin-unlocked .story-page__chapters section {
    grid-template-columns: 1fr;
    column-gap: 16px;
    row-gap: 9px;
    padding: 19px 0;
  }

  body.admin-unlocked .story-page__chapters p {
    font-size: 13px;
  }

  body.admin-unlocked .story-page__signature {
    width: calc(100% - 36px);
    border-top-color: rgba(16, 16, 15, 0.1);
    color: rgba(16, 16, 15, 0.42) !important;
  }

  body.admin-unlocked .brand-page--lookbook {
    padding: 18px 0 0;
  }

  body.admin-unlocked .brand-page--lookbook .brand-page__header {
    padding: 0 10px 18px;
  }

  body.admin-unlocked .brand-page--lookbook .brand-page__header h1 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  body.admin-unlocked .lookbook-collection-tabs {
    gap: 24px;
    padding-bottom: 1px;
  }

  body.admin-unlocked .brand-page__header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 24px;
  }

  body.admin-unlocked .brand-page__header p {
    max-width: 34rem;
    font-size: 13.5px;
  }

  body.admin-unlocked .lookbook-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.admin-unlocked .collection-filter {
    align-self: start;
  }

  body.admin-unlocked .collection-tabs {
    grid-column: 1 / -1;
    justify-self: stretch;
    order: 3;
    gap: 8px 18px;
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.admin-unlocked .collection-tabs::-webkit-scrollbar {
    display: none;
  }

  body.admin-unlocked .collection-tabs a {
    white-space: nowrap;
    padding-bottom: 6px;
    font-size: 9.5px;
  }

  body.admin-unlocked .social-track img {
    width: 190px;
    height: 240px;
  }

  body.admin-unlocked .shop-collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
    gap: 14px 10px;
    padding: 8px 0 46px;
  }

  body.admin-unlocked .shop-collection.shop-collection--filtered {
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px 0 46px;
  }

  body.admin-unlocked .shop-collection[data-visible-count="1"],
  body.admin-unlocked .shop-collection[data-visible-count="1"].shop-collection--view-compact {
    grid-template-columns: minmax(0, min(100%, 292px));
    justify-content: center;
    width: calc(100% - 32px);
  }

  body.admin-unlocked .collection-product {
    min-height: auto;
  }

  body.admin-unlocked .collection-product__media {
    min-height: 0;
    padding: 13px;
  }

  body.admin-unlocked .collection-product__media img {
    max-height: 260px;
  }

  body.admin-unlocked .collection-product__media .product-card-hover {
    opacity: 0 !important;
  }

  body.admin-unlocked .collection-product.card-gallery-active .product-card-icon,
  body.admin-unlocked .collection-product__media:hover .product-card-icon {
    opacity: 1;
  }

  body.admin-unlocked .product-card-nav {
    display: none;
  }

  body.admin-unlocked .product-card-dots {
    display: none;
  }

  body.admin-unlocked .collection-product__info {
    min-height: 54px;
    padding: 9px 0 0;
  }

  body.admin-unlocked .quick-bag {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
    opacity: 1;
    transform: none;
  }

  body.admin-unlocked .collection-product__info h2 {
    font-size: 12px;
  }

  body.admin-unlocked .collection-product__info p,
  body.admin-unlocked .collection-product__info strong {
    font-size: 11px;
  }

  body.admin-unlocked .faq-page {
    margin-top: 88px;
    min-height: calc(100svh - 88px);
  }

  body.admin-unlocked .faq-page__inner {
    width: calc(100% - 36px);
    padding: 26px 0 50px;
  }

  body.admin-unlocked .faq-page__head {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
    padding-bottom: 0;
    text-align: left;
  }

  body.admin-unlocked .faq-page h1 {
    font-size: 34px;
  }

  body.admin-unlocked .faq-page__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.admin-unlocked .faq-accordion {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.admin-unlocked .faq-page__side {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 20px 0 4px;
    border-top: 1px solid rgba(16, 16, 15, 0.09);
    border-bottom: 0;
  }

  body.admin-unlocked .faq-page__side a,
  body.admin-unlocked .faq-page__side p,
  body.admin-unlocked .faq-page__side span {
    grid-column: 1;
    grid-row: auto;
  }

  body.admin-unlocked .faq-page__side span {
    max-width: 290px;
  }

  body.admin-unlocked .faq-accordion summary {
    min-height: 54px;
    font-size: 15px;
  }

  body.admin-unlocked .faq-section {
    grid-template-columns: 1fr;
    border-top-color: rgba(16, 16, 15, 0.08);
  }

  body.admin-unlocked .faq-section h2 {
    padding: 18px 0 6px;
    font-size: 10.5px;
    letter-spacing: 0.14em;
  }

  body.admin-unlocked .faq-accordion details {
    grid-column: 1;
  }

  body.admin-unlocked .faq-section h2+details {
    border-top: 0;
  }

  body.admin-unlocked .faq-accordion details>div {
    max-width: none;
    padding-bottom: 20px;
    font-size: 12.5px;
  }

  body.admin-unlocked .faq-benefits {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    margin-top: 34px;
    padding: 0;
  }

  body.admin-unlocked .faq-benefits article {
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.09);
  }

  body.admin-unlocked .faq-benefits article:last-child {
    border-bottom: 0;
  }

  body.admin-unlocked .faq-service-strip {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .faq-service-strip>div {
    min-height: 72px;
    justify-content: start;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.09);
  }

  body.admin-unlocked .faq-service-strip>div:last-child {
    border-bottom: 0;
  }

  body.admin-unlocked .contact-page {
    margin-top: 88px;
    min-height: calc(100svh - 88px);
  }

  body.admin-unlocked .contact-page__inner {
    width: calc(100% - 36px);
    padding: 30px 0 50px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.admin-unlocked .contact-page__copy {
    padding-top: 0;
    border-top: 0;
    border-bottom: 0;
    padding-bottom: 0;
    text-align: left;
  }

  body.admin-unlocked .contact-page h1 {
    font-size: 34px;
  }

  body.admin-unlocked .contact-page p {
    max-width: none;
    margin: 0;
    font-size: 12.5px;
  }

  body.admin-unlocked .contact-page__details {
    max-width: none;
    margin-top: 24px;
  }

  body.admin-unlocked .contact-form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
    border-top: 1px solid rgba(16, 16, 15, 0.08);
  }

  body.admin-unlocked .contact-form__head {
    display: grid;
    gap: 0;
    align-items: start;
    margin-bottom: 0;
    padding: 16px 0 0;
  }

  body.admin-unlocked .contact-form__head span {
    max-width: none;
    text-align: left;
  }

  body.admin-unlocked .contact-form label:nth-of-type(3),
  body.admin-unlocked .contact-form label:nth-of-type(4) {
    grid-column: auto;
  }

  body.admin-unlocked .contact-form button {
    width: 100%;
  }

  body.admin-unlocked .continue-exploring {
    padding: 40px 16px 56px;
  }

  body.admin-unlocked .continue-exploring__head h2 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  body.admin-unlocked .continue-exploring__grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  body.admin-unlocked .continue-card {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 126px;
    gap: 14px 16px;
    padding: 14px;
  }

  body.admin-unlocked .continue-card__copy {
    gap: 5px;
  }

  body.admin-unlocked .continue-card__copy strong {
    font-size: 15px;
  }

  body.admin-unlocked .continue-card__copy small {
    max-width: 28ch;
    font-size: 11px;
    line-height: 1.4;
  }

  body.admin-unlocked .continue-card__action {
    font-size: 9px;
  }

  body.admin-unlocked .quick-bag {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }

  body.admin-unlocked .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  body.admin-unlocked .hero-copy {
    width: 100%;
    padding: 118px 22px 38px;
  }

  body.admin-unlocked .hero-copy h1 {
    font-size: clamp(50px, 14vw, 68px);
  }

  body.admin-unlocked .hero-media {
    min-height: 460px;
  }

  body.admin-unlocked .hero-media img {
    min-height: 460px;
    object-position: 50% 24%;
  }

  body.admin-unlocked .product-tile div,
  body.admin-unlocked .waitlist-panel {
    padding: 18px;
  }

  body.admin-unlocked .shop-grid,
  body.admin-unlocked .drop-hero,
  body.admin-unlocked .drop-gallery,
  body.admin-unlocked .drop-editorial,
  body.admin-unlocked .drop-product-links,
  body.admin-unlocked .home-essentials__groups,
  body.admin-unlocked .shop-card {
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .section-drop {
    padding: 88px 0 0;
  }

  body.admin-unlocked .drop-hero {
    min-height: min(650px, calc(100svh - 112px));
    width: 100%;
    aspect-ratio: auto;
    background: #11110f;
  }

  body.admin-unlocked .drop-hero>img,
  body.admin-unlocked .drop-hero>video,
  body.admin-unlocked .drop-hero__media {
    object-fit: cover;
    object-position: 50% 42%;
  }

  body.admin-unlocked .drop-hero h2 {
    font-size: clamp(106px, 34vw, 152px);
  }

  body.admin-unlocked .drop-hero p:not(.eyebrow) {
    max-width: 300px;
    font-size: 11px;
  }

  body.admin-unlocked .drop-hero__actions {
    width: min(300px, 100%);
  }

  body.admin-unlocked .drop-hero__actions .button {
    width: 100%;
  }

  body.admin-unlocked .drop-gallery img {
    height: 420px;
    object-position: center 42%;
  }

  body.admin-unlocked .drop-gallery img:first-child,
  body.admin-unlocked .drop-gallery img:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  body.admin-unlocked .drop-editorial,
  body.admin-unlocked .drop-product-links {
    width: auto;
    margin-left: 18px;
    margin-right: 18px;
  }

  body.admin-unlocked .drop-editorial {
    padding: 42px 0;
  }

  body.admin-unlocked .drop-product-links a {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 132px;
  }

  body.admin-unlocked .drop-product-links img {
    height: 98px;
  }

  body.admin-unlocked .home-essentials {
    padding: 12px 18px;
  }

  body.admin-unlocked .home-essentials__groups {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.admin-unlocked .home-essentials__group {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 8px;
    min-height: 52px;
    padding: 0;
  }

  body.admin-unlocked .home-essentials__group h3 {
    font-size: 13px;
  }

  body.admin-unlocked .home-essentials__title p {
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  body.admin-unlocked .home-essentials__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  body.admin-unlocked .home-essentials__products a {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 48px;
    gap: 4px;
    padding: 6px;
  }

  body.admin-unlocked .home-essentials__products img {
    width: 28px;
    height: 34px;
  }

  body.admin-unlocked .home-essentials__products span {
    justify-self: start;
    font-size: 7px;
    line-height: 1.15;
    text-align: left;
  }

  body.admin-unlocked .related-products {
    order: 5;
    padding: 36px 18px 48px;
  }

  body.admin-unlocked .related-products__head {
    display: grid;
    gap: 6px;
  }

  body.admin-unlocked .related-products__head h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  body.admin-unlocked .related-products__grid {
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .related-products__grid a {
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 132px;
  }

  body.admin-unlocked .related-products__grid img {
    padding: 18px;
  }

  body.admin-unlocked .related-products__grid span {
    align-content: center;
    min-height: auto;
    text-align: left;
  }

  body.admin-unlocked .women-grid,
  body.admin-unlocked .store-panel {
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .women-grid .collection-product {
    min-height: auto;
  }

  body.admin-unlocked .women-grid .collection-product__media {
    min-height: 320px;
  }

  body.admin-unlocked .shop-card>img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  body.admin-unlocked .shop-card__body {
    padding: 18px;
  }

  body.admin-unlocked .shop-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  body.admin-unlocked .waitlist-modal__form {
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .product-detail--matteo {
    padding-left: 0;
    padding-right: 0;
  }

  body.admin-unlocked .product-detail {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-top: 88px;
  }

  body.admin-unlocked .product-media-scroll {
    display: contents;
    grid-column: 1;
    height: auto;
    overflow: visible;
  }

  body.admin-unlocked .product-thumbnail-rail {
    display: none;
  }

  body.admin-unlocked .product-detail .product-gallery {
    order: 2;
    grid-column: 1;
    display: flex;
    grid-template-columns: none;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    min-height: auto;
    height: auto;
    background: var(--product-surface);
  }

  body.admin-unlocked .product-detail .product-gallery::-webkit-scrollbar {
    display: none;
  }

  body.admin-unlocked .product-detail .product-gallery img {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    border: 0;
    object-fit: contain;
    object-position: center top;
  }

  body.admin-unlocked .product-detail .product-gallery img:nth-child(2n) {
    margin-left: 0;
    width: 100%;
  }

  body.admin-unlocked .product-detail .product-gallery img[data-variant-image="primary"] {
    padding: 24px;
  }

  body.admin-unlocked .product-detail .product-gallery img[data-variant-image="secondary"],
  body.admin-unlocked .product-detail .product-gallery img[data-variant-image="tertiary"] {
    display: block;
  }

  body.admin-unlocked .gallery-swipe-hint {
    order: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 0 14px;
    background: var(--product-surface);
    color: rgba(16, 16, 15, 0.54);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  body.admin-unlocked .gallery-dots {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 13px 0 0;
    background: var(--product-surface);
  }

  body.admin-unlocked .gallery-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 16, 15, 0.24);
    cursor: pointer;
    transition: width 0.18s ease, background 0.18s ease;
  }

  body.admin-unlocked .gallery-dots button.gallery-dot--active {
    width: 18px;
    background: var(--ink);
  }

  body.admin-unlocked .gallery-swipe-hint img {
    width: 13px;
    height: 13px;
    opacity: 0.5;
  }

  body.admin-unlocked .product-detail .product-info {
    order: 4;
    grid-column: 1;
    height: auto;
    overflow: visible;
    min-height: auto;
    --product-control-width: 100%;
    padding: 24px 18px 38px;
    border-left: 0;
  }

  body.admin-unlocked .product-detail .product-info > * {
    width: 100%;
  }

  body.admin-unlocked .product-detail .product-info h2 {
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.18;
    letter-spacing: 0.07em;
  }

  body.admin-unlocked .product-detail .product-price {
    margin-bottom: 8px;
  }

  body.admin-unlocked .product-price-row {
    margin-bottom: 18px;
  }

  body.admin-unlocked .product-options {
    margin: 0 0 16px;
  }

  body.admin-unlocked .size-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.admin-unlocked .size-row button {
    min-width: 0;
    min-height: 42px;
  }

  body.admin-unlocked .purchase-notes {
    padding: 16px;
  }

  body.admin-unlocked .product-cart-button {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
  }

  body.admin-unlocked .product-purchase-trust {
    width: 100%;
    gap: 9px;
    overflow: visible;
    padding: 14px 16px;
  }

  body.admin-unlocked .product-purchase-trust > span {
    flex: none;
    padding: 0;
    font-size: 10px;
  }

  body.admin-unlocked .size-chart-modal__panel {
    min-height: min(520px, 100svh);
  }

  body.admin-unlocked .size-chart-modal__header {
    height: 56px;
    padding: 0 16px;
  }

  body.admin-unlocked .size-chart-modal__header h2 {
    font-size: 22px;
  }

  body.admin-unlocked .size-chart-modal__body {
    overflow-x: auto;
    padding: 26px 16px 34px;
  }

  body.admin-unlocked .size-chart-modal__tabs {
    min-width: 640px;
  }

  body.admin-unlocked .size-chart-modal__body h3 {
    min-width: 640px;
    font-size: 23px;
  }

  body.admin-unlocked .size-chart-modal__notes {
    min-width: 640px;
    font-size: 13px;
  }

  body.admin-unlocked .product-info summary {
    padding: 17px 0;
  }

  body.admin-unlocked .product-back {
    top: 12px;
    left: 14px;
    font-size: 9.5px;
  }

  body.admin-unlocked .shop-search-panel {
    inset: 0;
    width: auto;
    place-items: start center;
    padding: 104px 12px 20px;
  }

  body.admin-unlocked .shop-search-panel__dialog {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 124px);
  }

  body.admin-unlocked .shop-search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 14px 20px;
  }

  body.admin-unlocked .shop-search-panel__meta {
    padding: 16px 14px 12px;
  }

  body.admin-unlocked .shop-filter-panel {
    inset: var(--filter-top, 132px) 10px auto auto;
    width: calc(100vw - 20px);
  }

  body.admin-unlocked .shop-filter-panel__drawer {
    max-height: min(580px, calc(100svh - var(--filter-top, 132px) - 12px));
    gap: 16px;
    padding: 16px;
  }

  body.admin-unlocked .filter-group {
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .filter-group button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 10px;
  }

  body.admin-unlocked .shop-search-result {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  body.admin-unlocked .shop-search-result>strong {
    grid-column: 2;
  }

  body.admin-unlocked input,
  body.admin-unlocked textarea,
  body.admin-unlocked select {
    font-size: 16px !important;
  }

  body.admin-unlocked .waitlist-modal {
    align-items: center;
    padding: 12px;
  }

  body.admin-unlocked .waitlist-modal__panel {
    width: min(360px, 100%);
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    padding: 0;
  }

  body.admin-unlocked .waitlist-modal__brand {
    min-height: 142px;
    max-height: 26dvh;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  }

  body.admin-unlocked .waitlist-modal__brand img {
    width: 100%;
    height: 100%;
    object-position: 50% 24%;
  }

  body.admin-unlocked .waitlist-modal__mark {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.admin-unlocked .waitlist-modal__mark img {
    display: none;
  }

  body.admin-unlocked .waitlist-modal__mark::before {
    content: "";
    width: 54px;
    aspect-ratio: 689 / 833;
    display: block;
    background: #fff;
    -webkit-mask: url("detailedicon.png") center / contain no-repeat;
    mask: url("detailedicon.png") center / contain no-repeat;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
    transform: translateY(-1px);
  }

  body.admin-unlocked .waitlist-modal__content {
    padding: 22px 18px 20px;
    align-content: start;
  }

  body.admin-unlocked .waitlist-modal__close {
    position: sticky;
    top: 10px;
    justify-self: end;
    margin: 10px 10px -42px 0;
    padding: 8px 10px;
    background: rgba(251, 250, 246, 0.92);
    border: 1px solid rgba(16, 16, 15, 0.14);
    box-shadow: 0 10px 28px rgba(16, 16, 15, 0.14);
  }

  body.admin-unlocked .waitlist-modal h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  body.admin-unlocked .waitlist-modal p:not(.eyebrow) {
    font-size: 12.5px;
  }

  body.admin-unlocked .waitlist-modal .waitlist-modal__discount {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.035em;
  }

  body.admin-unlocked .waitlist-modal__form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  body.admin-unlocked .waitlist-modal__form input,
  body.admin-unlocked .waitlist-modal__form button {
    width: 100%;
  }

  body.admin-unlocked .waitlist-modal__consent {
    font-size: 10px;
  }

  body.admin-unlocked .waitlist-modal__decline {
    width: 100%;
    text-align: center;
  }

  body.admin-unlocked .waitlist-modal__notes {
    gap: 10px;
    font-size: 10px;
  }

  body.admin-unlocked .size-table {
    overflow-x: auto;
  }

  body.admin-unlocked .size-table [role="row"] {
    min-width: 560px;
  }

  body.admin-unlocked .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.admin-unlocked .footer-signup {
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .footer-social {
    margin-top: 34px;
  }
}

body.admin-unlocked .about-motion__mark,
body.admin-unlocked .drop-hero__mark {
  background: #fff;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28)) !important;
}

body.admin-unlocked .home-pieces.shop-view-active {
  display: grid !important;
}

body.admin-unlocked .home-pieces {
  background: #fff;
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  color: var(--ink);
  gap: clamp(24px, 2.4vw, 34px);
  padding: clamp(28px, 3.2vw, 44px) max(28px, calc((100vw - 1440px) / 2)) clamp(36px, 4vw, 58px);
}

body.admin-unlocked .home-pieces__tabs {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 3vw, 44px);
  margin: 0;
  color: rgba(16, 16, 15, 0.42);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

body.admin-unlocked .home-pieces__tabs a,
body.admin-unlocked .home-pieces__tabs span {
  color: inherit;
  padding-bottom: 10px;
  text-decoration: none;
}

body.admin-unlocked .home-pieces__tabs a[aria-current="true"] {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

body.admin-unlocked .home-pieces__grid {
  display: grid;
  grid-template-columns: minmax(280px, min(430px, 31vw));
  justify-content: center;
  gap: clamp(14px, 1.3vw, 22px);
}

body.admin-unlocked .home-piece-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  position: relative;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

body.admin-unlocked .home-piece-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  min-height: 0;
  background: var(--product-surface);
  overflow: hidden;
  padding: clamp(18px, 2.1vw, 32px);
}

body.admin-unlocked .home-piece-card__media img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.18s ease;
}

body.admin-unlocked .home-piece-card:hover .home-piece-card__media img {
  transform: scale(1.015);
}

body.admin-unlocked .home-piece-card__quick {
  position: absolute;
  right: 16px;
  bottom: 44px;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transform: translateY(7px) rotate(-120deg);
  transition: opacity 0.2s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.18s ease, background 0.18s ease;
}

body.admin-unlocked .home-piece-card:hover .home-piece-card__quick,
body.admin-unlocked .home-piece-card:focus-within .home-piece-card__quick {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

body.admin-unlocked .home-piece-card__quick:hover,
body.admin-unlocked .home-piece-card__quick:focus-visible {
  background: #fff;
  border-color: rgba(16, 16, 15, 0.18);
  transform: translateY(-1px) rotate(360deg);
}

body.admin-unlocked .home-piece-card__quick:active {
  transform: translateY(0) rotate(360deg) scale(0.94);
}

body.admin-unlocked .home-piece-card--sold-out:hover .home-piece-card__quick,
body.admin-unlocked .home-piece-card--sold-out:focus-within .home-piece-card__quick,
body.admin-unlocked .home-piece-card__quick.is-disabled {
  opacity: 0;
  pointer-events: none;
}

body.admin-unlocked .home-piece-card--sold-out {
  display: none;
}

body.admin-unlocked .home-piece-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 9px;
  background: rgba(16, 16, 15, 0.88);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

body.admin-unlocked .home-piece-card__name {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: rgba(16, 16, 15, 0.88);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.2;
}

body.admin-unlocked .home-piece-card__color {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: rgba(16, 16, 15, 0.46);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

body.admin-unlocked .home-piece-card__price {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  margin: 0;
  color: rgba(16, 16, 15, 0.52);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

body.admin-unlocked .home-piece-card__meta {
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: start;
  padding: 10px 1px 0;
}

body.admin-unlocked .home-pieces__view-all {
  justify-self: center;
  color: rgba(16, 16, 15, 0.86);
  border-bottom: 1px solid currentColor;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  padding-bottom: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s ease, opacity 0.18s ease;
}

body.admin-unlocked .home-pieces__view-all:hover,
body.admin-unlocked .home-pieces__view-all:focus-visible {
  color: rgba(16, 16, 15, 1);
  opacity: 0.72;
}

body.admin-unlocked .home-editorial-row.shop-view-active {
  display: grid !important;
}

body.admin-unlocked .home-editorial-row {
  background: #fff;
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  color: var(--ink);
  gap: clamp(22px, 2.4vw, 36px);
  padding: clamp(38px, 4vw, 58px) max(24px, calc((100vw - 1260px) / 2)) clamp(42px, 4.4vw, 68px);
}

body.admin-unlocked .home-editorial-row__heading {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

body.admin-unlocked .home-editorial-row__heading span {
  color: rgba(16, 16, 15, 0.46);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

body.admin-unlocked .home-editorial-row__heading p {
  margin: 0;
  color: rgba(16, 16, 15, 0.74);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 400;
  line-height: 1.35;
}

body.admin-unlocked .home-editorial-row__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1px;
  width: 100%;
  max-width: 1120px;
  justify-self: center;
}

body.admin-unlocked .home-editorial-row__item {
  display: grid;
  place-items: start stretch;
  min-width: 0;
  padding: 0;
  border: 0;
  background: #f4f4f3;
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  cursor: zoom-in;
  line-height: 0;
}

body.admin-unlocked .home-editorial-row__grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: center top;
  filter: saturate(0.92) contrast(1.01);
  transition: transform 0.26s ease, opacity 0.2s ease;
}

body.admin-unlocked .home-editorial-row__item:hover img,
body.admin-unlocked .home-editorial-row__item:focus-visible img {
  opacity: 0.94;
  transform: scale(1.01);
}

body.admin-unlocked .home-editorial-row__item:focus-visible {
  outline: 1px solid rgba(16, 16, 15, 0.55);
  outline-offset: 3px;
}

body.admin-unlocked .home-editorial-row__dots {
  display: none;
}

body.admin-unlocked .home-service-strip.shop-view-active {
  display: grid !important;
}

body.admin-unlocked .home-service-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  color: var(--ink);
}

body.admin-unlocked .home-service-strip>div {
  min-height: 104px;
  display: grid;
  grid-template-columns: 24px minmax(0, auto);
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .home-service-strip>div:last-child {
  border-right: 0;
}

body.admin-unlocked .home-service-strip svg {
  width: 24px;
  height: 24px;
}

body.admin-unlocked .home-service-strip p {
  margin: 0;
  display: grid;
  gap: 4px;
}

body.admin-unlocked .home-service-strip strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}

body.admin-unlocked .home-service-strip span {
  color: rgba(16, 16, 15, 0.54);
  font-size: 12px;
  line-height: 1.2;
}

body.admin-unlocked .site-footer {
  display: block;
  padding: 0;
  background: #fff;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
  color: var(--ink);
  font-family: var(--font-primary);
}

body.admin-unlocked .footer-columns {
  width: min(1440px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr;
  gap: clamp(42px, 6vw, 108px);
  padding: clamp(58px, 6vw, 86px) 0 clamp(44px, 5vw, 70px);
}

body.admin-unlocked .footer-brand {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.admin-unlocked .footer-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

body.admin-unlocked .footer-list a,
body.admin-unlocked .footer-list button,
body.admin-unlocked .footer-about p,
body.admin-unlocked .footer-connect p {
  color: rgba(16, 16, 15, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

body.admin-unlocked .footer-list a,
body.admin-unlocked .footer-list button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  font-size: 11.5px;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

body.admin-unlocked .footer-list a:hover,
body.admin-unlocked .footer-list a:focus-visible,
body.admin-unlocked .footer-list button:hover,
body.admin-unlocked .footer-list button:focus-visible,
body.admin-unlocked .footer-connect button:hover,
body.admin-unlocked .footer-connect button:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.admin-unlocked .footer-about p,
body.admin-unlocked .footer-connect p {
  max-width: 390px;
  margin: 0;
}

body.admin-unlocked .footer-connect button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.admin-unlocked .footer-newsletter {
  display: grid;
  align-content: start;
  gap: 14px;
}

body.admin-unlocked .footer-newsletter__form {
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-top: 4px;
}

body.admin-unlocked .footer-newsletter__form label {
  display: grid;
  gap: 6px;
}

body.admin-unlocked .footer-newsletter__form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.admin-unlocked .footer-newsletter__form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(16, 16, 15, 0.16);
  border-radius: 0;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 12px;
}

body.admin-unlocked .footer-newsletter__form input:focus {
  outline: 1px solid rgba(16, 16, 15, 0.42);
  outline-offset: 2px;
}

body.admin-unlocked .footer-newsletter__form button {
  width: fit-content;
  min-width: 132px;
  min-height: 38px;
  border: 1px solid rgba(16, 16, 15, 0.22);
  padding: 0 18px;
  background: transparent;
  color: rgba(16, 16, 15, 0.74);
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

body.admin-unlocked .footer-newsletter__form button:hover,
body.admin-unlocked .footer-newsletter__form button:focus-visible {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

body.admin-unlocked .footer-newsletter__form button:disabled {
  opacity: 0.58;
  cursor: progress;
}

body.admin-unlocked .footer-newsletter__form small {
  min-height: 16px;
  color: rgba(16, 16, 15, 0.52);
  font-size: 11px;
  line-height: 1.35;
}

body.admin-unlocked .footer-social {
  display: flex;
  gap: 16px;
  margin-top: 64px;
}

body.admin-unlocked .footer-social a {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  opacity: 0.62;
  transition: opacity 0.16s ease;
}

body.admin-unlocked .footer-social a:hover {
  opacity: 1;
}

body.admin-unlocked .footer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

body.admin-unlocked .footer-wordmark {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
}

body.admin-unlocked .footer-wordmark__text {
  width: min(190px, 40vw);
  height: auto;
  display: block;
}

body.admin-unlocked .footer-wordmark__mark {
  width: min(64px, 13vw);
  height: auto;
  display: block;
  transform: translateY(1px);
}

body.admin-unlocked .footer-wordmark__logo {
  width: min(256px, 58vw);
  height: auto;
  display: block;
}

body.admin-unlocked .footer-copyright {
  margin: 0;
  padding: 0 0 18px;
  color: rgba(16, 16, 15, 0.32);
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: none;
}

body.admin-unlocked .footer-copyright a {
  color: inherit;
  text-decoration: none;
}

body.admin-unlocked .footer-copyright a:hover,
body.admin-unlocked .footer-copyright a:focus-visible {
  color: rgba(16, 16, 15, 0.58);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header:hover,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header:focus-within {
  background: rgba(251, 250, 246, 0.96);
  border-bottom-color: rgba(16, 16, 15, 0.08);
  backdrop-filter: blur(12px);
  color: var(--ink);
}

body.admin-unlocked[data-shop-view="home"].home-header-solid .site-nav,
body.admin-unlocked[data-shop-view="home"].home-header-solid .shop-actions,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-nav a:hover,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-nav a[aria-current],
body.admin-unlocked[data-shop-view="home"].home-header-solid .nav-item:hover>a,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header:hover .site-nav,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header:focus-within .site-nav,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header:hover .shop-actions,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header:focus-within .shop-actions {
  color: var(--ink);
}

body.admin-unlocked[data-shop-view="home"].home-header-solid .shop-action-icon img,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header:hover .shop-action-icon img,
body.admin-unlocked[data-shop-view="home"].home-header-solid .site-header:focus-within .shop-action-icon img {
  filter: none;
}

.mobile-header-actions,
.mobile-menu {
  display: none;
}

@media (max-width: 840px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  body.admin-unlocked[data-shop-view="home"] {
    background: #11110f;
  }

  body.admin-unlocked .site-header {
    position: fixed;
    left: 0;
    right: auto;
    top: 0 !important;
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 72px;
    height: 72px;
    display: grid;
    grid-template-columns: minmax(82px, 1fr) auto minmax(82px, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #fff !important;
    color: var(--ink) !important;
    border-bottom: 1px solid rgba(16, 16, 15, 0.08) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    z-index: 44;
  }

  body.admin-unlocked[data-shop-view="home"] .site-header,
  body.admin-unlocked[data-shop-view="home"] .site-header:hover,
  body.admin-unlocked[data-shop-view="home"] .site-header:focus-within {
    background: #fff !important;
    color: var(--ink) !important;
  }

  body.admin-unlocked .site-nav {
    display: none !important;
  }

  .mobile-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
  }

  .mobile-header-actions--left {
    grid-column: 1;
    justify-self: start;
  }

  .mobile-menu-toggle,
  .mobile-header-search,
  body.admin-unlocked .shop-action-icon {
    width: 32px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--ink);
  }

  .mobile-header-search {
    display: none !important;
  }

  .mobile-menu-toggle img,
  .mobile-header-search img,
  body.admin-unlocked .shop-action-icon img {
    width: 22px;
    height: 22px;
    filter: none !important;
  }

  .mobile-menu-toggle img {
    width: 25px;
    height: 25px;
  }

  body.admin-unlocked .brand-wordmark {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% + 5px));
    width: clamp(168px, 48vw, 198px);
    margin: 0;
    z-index: 1;
  }

  body.admin-unlocked .brand-wordmark__lockup {
    gap: 7px;
  }

  body.admin-unlocked .brand-wordmark__text {
    width: calc(100% - 28px);
  }

  body.admin-unlocked .brand-wordmark__mark {
    width: 21px;
  }

  body.admin-unlocked[data-shop-view="home"]:not(.home-header-solid) .brand-wordmark__lockup--black {
    opacity: 1;
  }

  body.admin-unlocked[data-shop-view="home"]:not(.home-header-solid) .brand-wordmark__lockup--white {
    opacity: 0;
  }

  body.admin-unlocked[data-shop-view="home"] .shop-action-icon img {
    filter: none !important;
  }

  body.admin-unlocked input,
  body.admin-unlocked textarea,
  body.admin-unlocked select {
    font-size: 16px !important;
  }

  body.admin-unlocked .shop-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
  }

  body.admin-unlocked .shop-actions .currency-selector,
  body.admin-unlocked .shop-action-icon--search {
    display: none !important;
  }

  body.admin-unlocked.mobile-country-open .shop-actions .currency-selector {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 92;
    display: block !important;
    min-height: 0;
  }

  body.admin-unlocked.mobile-country-open .currency-selector__button {
    position: fixed;
    width: 1px;
    height: 1px;
    min-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
  }

  body.admin-unlocked .shop-actions .shop-action-icon {
    width: 28px;
    height: 42px;
  }

  body.admin-unlocked .shop-actions .shop-action-icon img {
    width: 21px;
    height: 21px;
  }

  .shop-announcement {
    left: 0;
    right: auto;
    top: 72px;
    width: 100vw;
    max-width: 100%;
    height: 34px;
    grid-template-columns: 38px minmax(0, 1fr) 54px;
    background:
      linear-gradient(90deg, rgba(251, 250, 246, 0.12), rgba(251, 250, 246, 0.28), rgba(251, 250, 246, 0.12)),
      rgba(255, 255, 255, 0.08);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 1px 16px rgba(16, 16, 15, 0.08);
    -webkit-backdrop-filter: blur(22px) saturate(1.28);
    backdrop-filter: blur(22px) saturate(1.28);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.105em;
    z-index: 35;
  }

  .shop-announcement__message {
    max-width: none;
    height: 34px;
    padding: 0 8px;
    line-height: 34px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
  }

  .shop-announcement__arrow {
    width: 38px;
    height: 34px;
    font-size: 22px;
  }

  .shop-announcement__arrow--prev {
    margin-left: 4px;
  }

  .shop-announcement__controls {
    gap: 7px;
    padding-right: 6px;
  }

  .shop-announcement__dot {
    width: 4px;
    height: 4px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
  }

  .mobile-menu[hidden] {
    display: none !important;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(16, 16, 15, 0.34);
  }

  .mobile-menu__drawer {
    position: relative;
    width: min(88vw, 360px);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: #fff;
    color: var(--ink);
    box-shadow: 14px 0 34px rgba(16, 16, 15, 0.1);
  }

  .mobile-menu__head {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 14px;
    border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  }

  .mobile-menu__brand {
    width: 164px;
    display: inline-block;
    line-height: 0;
  }

  .mobile-menu__brand-text {
    width: calc(100% - 28px);
    height: auto;
  }

  .mobile-menu__brand-mark {
    width: 46px;
    height: auto;
  }

  .mobile-menu__brand-logo {
    display: block;
    width: 100%;
    height: auto;
  }

  .mobile-menu__close {
    width: 38px;
    height: 38px;
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: var(--ink);
  }

  .mobile-menu__close span {
    position: relative;
    width: 22px;
    height: 22px;
    display: block;
  }

  .mobile-menu__close span::before,
  .mobile-menu__close span::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    top: 10px;
    height: 1.5px;
    background: currentColor;
  }

  .mobile-menu__close span::before {
    transform: rotate(45deg);
  }

  .mobile-menu__close span::after {
    transform: rotate(-45deg);
  }

  .mobile-menu__search {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.1);
    padding: 0 22px;
    background: transparent;
    color: rgba(16, 16, 15, 0.48);
    font: inherit;
    font-size: 18px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .mobile-menu__search img {
    width: 18px;
    height: 18px;
    opacity: 0.68;
  }

  .mobile-menu__nav {
    display: grid;
    border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  }

  .mobile-menu__nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(16, 16, 15, 0.1);
    padding: 0 22px;
    color: var(--ink);
    font-size: 15px;
    letter-spacing: 0.01em;
  }

  .mobile-menu__nav a:last-child {
    border-bottom: 0;
  }

  .mobile-menu__utility {
    display: grid;
    gap: 0;
    padding: 16px 0 10px;
  }

  .mobile-menu__utility button,
  .mobile-menu__utility a {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 0;
    padding: 0 22px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .mobile-menu__utility img {
    width: 18px;
    height: 18px;
    opacity: 0.66;
  }

  .mobile-menu__care-icon {
    width: 18px;
    height: 14px;
    display: inline-block;
    border: 1.35px solid rgba(16, 16, 15, 0.6);
    border-radius: 2px;
    position: relative;
  }

  .mobile-menu__care-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: -5px;
    width: 6px;
    height: 6px;
    border-left: 1.35px solid rgba(16, 16, 15, 0.6);
    border-bottom: 1.35px solid rgba(16, 16, 15, 0.6);
    background: #fff;
    transform: skewY(-35deg);
  }

  .mobile-menu__country-flag {
    width: 21px;
    height: 21px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(16, 16, 15, 0.05);
  }

  .mobile-menu__country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-menu__country-flag {
    display: none;
  }

  .account-popover {
    position: fixed;
    top: 96px;
    right: 12px;
    width: min(330px, calc(100vw - 24px));
  }

  .mobile-menu__chevron {
    width: 8px;
    height: 8px;
    border-top: 1.4px solid currentColor;
    border-right: 1.4px solid currentColor;
    transform: rotate(45deg);
    margin-left: auto;
  }

  .mobile-menu__products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px 20px 22px;
    margin-top: auto;
  }

  .mobile-menu__products a {
    min-width: 0;
    color: var(--ink);
    font-size: 12px;
    line-height: 1.3;
  }

  .mobile-menu__products img {
    width: 100%;
    aspect-ratio: 1 / 1.12;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
    background: var(--product-surface);
  }

  .shop-video-hero {
    width: 100vw;
    min-height: calc(100svh - 72px);
    margin-top: 72px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .shop-video-hero__media {
    transform: translateY(14px) scale(1.04);
    transform-origin: center top;
    filter: saturate(0.96) contrast(1.01);
  }

  .shop-video-hero__media img {
    object-position: 28% 34%;
  }

  .shop-video-hero::after {
    background: linear-gradient(180deg, rgba(16, 16, 15, 0.02), rgba(16, 16, 15, 0.22));
  }

  .shop-video-hero__copy {
    align-self: end;
    width: 100%;
    gap: 18px;
    padding: 0 18px 76px;
    transform: none;
  }

  .shop-video-hero__copy p {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .shop-video-hero__intro strong {
    font-size: 21px;
    letter-spacing: 0.1em;
  }

  .shop-video-hero__button {
    width: auto;
    min-width: 96px;
    min-height: 30px;
    padding: 0 15px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: 10px;
    letter-spacing: 0.05em;
    box-shadow: inset 0 0 0 0 #fff;
  }

  .shop-video-hero__button:hover,
  .shop-video-hero__button:focus-visible {
    color: var(--ink);
    border-color: #fff;
    box-shadow: inset 0 -32px 0 0 #fff;
    transform: translateY(-1px);
  }

  body.admin-unlocked .home-transition {
    display: none !important;
  }

  body.admin-unlocked .home-pieces {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    gap: 24px;
    padding: 34px 16px 42px;
    background: #fff;
  }

  body.admin-unlocked .home-pieces__tabs {
    margin-bottom: 0;
  }

  body.admin-unlocked .home-pieces__tabs a,
  body.admin-unlocked .home-pieces__tabs span {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  body.admin-unlocked .home-pieces__grid {
    grid-template-columns: minmax(0, min(100%, 330px));
    justify-content: center;
    gap: 0;
  }

  body.admin-unlocked .home-piece-card {
    min-width: 0;
  }

  body.admin-unlocked .home-piece-card__media {
    aspect-ratio: 4 / 5;
    padding: 16px;
  }

  body.admin-unlocked .home-piece-card__badge {
    top: 12px;
    left: 12px;
    font-size: 10px;
  }

  body.admin-unlocked .home-piece-card__quick {
    right: 10px;
    bottom: 42px;
    width: 28px;
    height: 28px;
    opacity: 1;
    transform: none;
  }

  body.admin-unlocked .collection-page-header,
  body.admin-unlocked .brand-page,
  body.admin-unlocked .faq-page,
  body.admin-unlocked .contact-page,
  body.admin-unlocked .account-page,
  body.admin-unlocked .legal-page {
    margin-top: 106px;
  }

  body.admin-unlocked .product-detail {
    padding-top: 106px;
  }

  body.admin-unlocked .shop-search-panel,
  body.admin-unlocked .shop-filter-panel {
    top: 0;
    z-index: 90;
  }

  body.admin-unlocked .country-menu {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100svh - 104px);
    z-index: 92;
  }

  body.admin-unlocked .size-chart-modal {
    padding: 14px;
  }

  body.admin-unlocked .size-chart-modal__panel {
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100svh - 28px);
  }

  body.admin-unlocked .size-chart-modal__body {
    padding: 22px 14px 28px;
  }

  body.admin-unlocked .size-recommendation-form,
  body.admin-unlocked .size-recommendation-result,
  body.admin-unlocked .size-recommendation-note {
    width: 100%;
  }

  body.admin-unlocked [data-size-guide-panel="chart"] {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  body.admin-unlocked .size-chart-table {
    min-width: 520px;
  }

  body.admin-unlocked .quick-add-modal {
    align-items: end;
    padding: 0;
  }

  body.admin-unlocked .quick-add-modal__panel {
    width: 100%;
    min-height: 0;
    max-height: calc(100svh - 28px);
    grid-template-columns: 1fr;
    gap: 22px;
    overflow-y: auto;
    padding: 46px 20px 28px;
  }

  body.admin-unlocked .quick-add-modal__media {
    width: min(300px, 100%);
    min-height: 0;
    justify-self: center;
  }

  body.admin-unlocked .quick-add-modal__media img {
    width: 100%;
    height: 100%;
    padding: 34px;
  }

  body.admin-unlocked .quick-add-modal__content {
    gap: 12px;
  }

  body.admin-unlocked .quick-add-modal__sizes {
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  body.admin-unlocked .home-pieces {
    gap: 22px;
    padding: 28px 16px 38px;
  }

  body.admin-unlocked .home-pieces__tabs {
    gap: 24px;
    margin-bottom: 0;
    font-size: 10px;
  }

  body.admin-unlocked .home-pieces__grid {
    grid-template-columns: minmax(0, min(100%, 318px));
    justify-content: center;
    gap: 0;
  }

  body.admin-unlocked .home-piece-card__media {
    min-height: 0;
  }

  body.admin-unlocked .home-piece-card__media img {
    width: 100%;
    height: 100%;
    max-height: 330px;
  }

  body.admin-unlocked .home-piece-card__name {
    font-size: 12px;
  }

  body.admin-unlocked .home-editorial-row {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: hidden;
    gap: 18px;
    padding: 30px 16px 38px;
  }

  body.admin-unlocked .home-editorial-row__heading {
    justify-items: start;
    text-align: left;
  }

  body.admin-unlocked .home-editorial-row__heading span {
    font-size: 9.5px;
  }

  body.admin-unlocked .home-editorial-row__heading p {
    font-size: 13px;
  }

  body.admin-unlocked .home-editorial-row__grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    margin: 0;
    padding: 0;
  }

  body.admin-unlocked .home-editorial-row__grid::-webkit-scrollbar {
    display: none;
  }

  body.admin-unlocked .home-editorial-row__item {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  body.admin-unlocked .home-editorial-row__grid img {
    height: auto;
  }

  body.admin-unlocked .home-editorial-row__dots {
    position: absolute;
    left: 50%;
    bottom: 54px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(251, 250, 246, 0.58);
    -webkit-backdrop-filter: blur(14px) saturate(1.18);
    backdrop-filter: blur(14px) saturate(1.18);
    transform: translateX(-50%);
  }

  body.admin-unlocked .home-editorial-row__dots button {
    width: 5px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 16, 15, 0.24);
    transition: width 180ms ease, background 180ms ease;
  }

  body.admin-unlocked .home-editorial-row__dots button.is-active {
    width: 17px;
    background: rgba(16, 16, 15, 0.86);
  }

  body.admin-unlocked .home-service-strip {
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .cart-drawer {
    grid-template-columns: 1fr;
  }

  body.admin-unlocked .cart-drawer__backdrop {
    display: none;
  }

  body.admin-unlocked .cart-drawer__panel {
    grid-column: 1;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    box-shadow: none;
  }

  body.admin-unlocked .cart-drawer__header {
    min-height: 48px;
    padding: 0 18px;
  }

  body.admin-unlocked .cart-drawer__unlock {
    padding: 0 18px;
  }

  body.admin-unlocked .cart-line {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 18px;
  }

  body.admin-unlocked .cart-recommendations {
    display: block;
    padding: 30px 0 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.08);
  }

  body.admin-unlocked .cart-recommendations__head {
    margin: 0;
    padding: 0 18px 14px;
  }

  body.admin-unlocked .cart-recommendations__head h3 {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  body.admin-unlocked .cart-recommendations__head span {
    display: none;
  }

  body.admin-unlocked .cart-recommendations__grid {
    display: flex;
    gap: 0;
  }

  body.admin-unlocked .cart-recommendation {
    min-width: 142px;
    width: 142px;
  }

  body.admin-unlocked .cart-recommendation a {
    gap: 0;
  }

  body.admin-unlocked .cart-recommendation img {
    aspect-ratio: 1 / 1.08;
    max-height: none;
    padding: 16px;
  }

  body.admin-unlocked .cart-recommendation span {
    display: block;
  }

  body.admin-unlocked .cart-recommendation small {
    font-size: 9px;
  }

  body.admin-unlocked .cart-recommendation button {
    top: 116px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  body.admin-unlocked .cart-drawer__footer {
    padding: 18px 18px 16px;
  }

  body.admin-unlocked .cart-checkout-button {
    min-height: 50px;
  }

  body.admin-unlocked .account-drawer {
    grid-template-columns: 1fr;
    place-items: center;
    padding: 18px;
    pointer-events: auto;
  }

  body.admin-unlocked .account-drawer__backdrop {
    display: block;
  }

  body.admin-unlocked .account-drawer__panel {
    grid-column: 1;
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 390px);
    height: auto;
    min-height: 0;
    max-height: calc(100svh - 36px);
    box-shadow: 0 20px 56px rgba(16, 16, 15, 0.18);
  }

  body.admin-unlocked .account-drawer__header {
    min-height: 58px;
    padding: 0 18px;
  }

  body.admin-unlocked .account-drawer__body {
    padding: 22px 18px;
  }

  body.admin-unlocked .account-page {
    min-height: auto;
    padding: 146px 16px 58px;
  }

  body.admin-unlocked .account-page__signed-out {
    grid-template-columns: 1fr;
    border-top-color: rgba(16, 16, 15, 0.1);
    border-bottom-color: rgba(16, 16, 15, 0.1);
  }

  body.admin-unlocked .account-page__signin-card {
    min-height: auto;
    padding: 36px 22px 38px;
  }

  body.admin-unlocked .account-page__signed-out h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  body.admin-unlocked .account-page__signed-out .button {
    width: 100%;
    justify-self: stretch;
  }

  body.admin-unlocked .account-page__benefits {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #fff;
  }

  body.admin-unlocked .account-page__benefits article {
    min-height: auto;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.1);
    text-align: center;
  }

  body.admin-unlocked .account-page__benefits article:last-child {
    border-bottom: 0;
  }

  body.admin-unlocked .account-page__signed-out .account-page__benefits p {
    max-width: 250px;
    margin: 0 auto;
  }

  body.admin-unlocked .account-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.admin-unlocked .account-page__sidebar {
    border-top: 1px solid rgba(16, 16, 15, 0.14);
  }

  body.admin-unlocked .account-page__mark {
    padding-top: 28px;
  }

  body.admin-unlocked .account-page__sidebar h1 {
    font-size: 24px;
  }

  body.admin-unlocked .account-page__sidebar>p:nth-of-type(2) {
    padding-bottom: 26px;
  }

  body.admin-unlocked .account-page__nav a,
  body.admin-unlocked .account-page__signout {
    min-height: 50px;
    padding: 0;
    font-size: 12px;
  }

  body.admin-unlocked .account-page__main {
    gap: 24px;
    padding-top: 0;
  }

  body.admin-unlocked .account-page__overview {
    padding: 2px 18px 20px;
  }

  body.admin-unlocked .account-page__panel {
    min-height: 260px;
  }

  body.admin-unlocked .account-page__panel header {
    padding: 20px 18px 12px;
  }

  body.admin-unlocked .account-page__empty {
    min-height: 170px;
    padding: 24px 18px;
  }

  body.admin-unlocked .account-page__pager {
    margin-top: 22px;
    min-height: 56px;
    padding: 0 18px;
  }

  body.admin-unlocked .account-page__form {
    padding: 2px 18px 28px;
  }

  body.admin-unlocked .home-service-strip>div {
    min-height: 84px;
    justify-content: start;
    padding: 22px clamp(20px, 7vw, 34px);
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  }

  body.admin-unlocked .home-service-strip>div:last-child {
    border-bottom: 0;
  }

  body.admin-unlocked .footer-columns {
    width: min(100% - 40px, 560px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 0 38px;
  }

  body.admin-unlocked .footer-brand {
    margin-bottom: 16px;
  }

  body.admin-unlocked .footer-social {
    margin-top: 28px;
  }

  body.admin-unlocked .footer-wordmark {
    min-height: 96px;
  }

  body.admin-unlocked .cookie-consent {
    inset: auto 0 0;
    display: block;
    padding: 0;
  }

  body.admin-unlocked .cookie-consent__panel {
    width: 100%;
    grid-template-columns: 1fr;
    max-height: none;
    gap: 16px;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  }

  body.admin-unlocked .cookie-consent p {
    font-size: 11px;
    line-height: 1.5;
  }

  body.admin-unlocked .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-width: 0;
  }

  body.admin-unlocked .cookie-consent__link {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 2px;
  }

  body.admin-unlocked .cookie-consent__button {
    width: 100%;
    min-height: 42px;
  }

  body.admin-unlocked .cookie-consent.cookie-consent--preferences {
    inset: 0;
    display: grid;
    padding: 12px;
  }

  body.admin-unlocked .cookie-consent.cookie-consent--preferences .cookie-consent__panel {
    width: min(420px, calc(100vw - 24px));
    max-height: calc(100svh - 24px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px 20px;
  }

  body.admin-unlocked .cookie-consent.cookie-consent--preferences .cookie-consent__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  body.admin-unlocked .size-chart-modal {
    padding: 12px;
  }

  body.admin-unlocked .size-chart-modal__panel {
    width: min(420px, calc(100vw - 24px));
    min-height: 0;
    max-height: calc(100svh - 24px);
    overflow-x: hidden;
  }

  body.admin-unlocked .size-chart-modal__header {
    height: 54px;
    padding: 0 16px;
  }

  body.admin-unlocked .size-chart-modal__header h2 {
    font-size: 22px;
  }

  body.admin-unlocked .size-chart-modal__body {
    overflow-x: hidden;
    padding: 20px 14px 26px;
  }

  body.admin-unlocked .size-chart-modal__tabs {
    min-width: 0;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
  }

  body.admin-unlocked .size-chart-modal__tabs button {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
    white-space: nowrap;
  }

  body.admin-unlocked .size-chart-modal__body h3 {
    min-width: 0;
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 1.12;
  }

  body.admin-unlocked .size-chart-modal__notes {
    min-width: 0;
  }

  body.admin-unlocked [data-size-guide-panel="chart"] {
    overflow-x: hidden;
  }

  body.admin-unlocked .size-chart-table {
    min-width: 0;
    width: 100%;
    font-size: 12px;
  }

  body.admin-unlocked .size-chart-table [role="row"] {
    grid-template-columns: 0.54fr 1fr 1fr;
  }

  body.admin-unlocked .size-chart-table strong,
  body.admin-unlocked .size-chart-table span {
    min-height: 30px;
    padding: 8px 4px;
  }
}

@media (max-width: 840px) {
  body.admin-unlocked .brand-page--story {
    display: block !important;
    margin-top: 88px !important;
    min-height: 0 !important;
    padding: 36px 0 58px !important;
    overflow: visible !important;
  }
}

@media (max-width: 840px) {
  body.admin-unlocked .brand-wordmark {
    width: clamp(190px, 53vw, 220px);
  }

  body.admin-unlocked .brand-wordmark__lockup {
    display: block;
  }

  body.admin-unlocked .brand-wordmark__text {
    width: calc(100% - 58px);
  }

  body.admin-unlocked .brand-wordmark__mark {
    width: 53px;
    transform: none;
  }

  body.admin-unlocked .shop-actions {
    gap: 4px;
    transform: translateX(-14px);
  }

  body.admin-unlocked .shop-actions .shop-action-icon {
    width: 27px;
  }
}

@media (max-width: 360px) {
  body.admin-unlocked .site-header {
    grid-template-columns: 42px minmax(0, 1fr) 50px;
    gap: 4px;
    padding: 0 10px;
  }

  .mobile-header-actions--left {
    justify-self: start;
  }

  body.admin-unlocked .brand-wordmark {
    grid-column: 1 / -1;
    justify-self: center;
    width: 172px;
  }

  body.admin-unlocked .brand-wordmark__text {
    width: calc(100% - 48px);
  }

  body.admin-unlocked .brand-wordmark__mark {
    width: 43px;
  }

  body.admin-unlocked .shop-actions {
    gap: 5px;
    justify-self: end;
    width: 50px;
    min-width: 0;
    transform: none;
  }

  body.admin-unlocked .shop-actions .shop-action-icon {
    width: 24px;
  }
}
