:root {
  --bg: #000;
  --fg: #f5f5f5;
  --muted: #bcbcbc;
  --line: #2a2a2a;
  --chrome: linear-gradient(130deg, #757575 0%, #d0d0d0 45%, #6d6d6d 100%);
  --surface: #0a0a0a;
  --bg-primary: #080808;
  --bg-secondary: #111111;
  --text-primary: #f2f2f2;
  --text-secondary: #8a8a8a;
  --border: #292929;
  --signature-accent: #8f1118;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 5rem;
  --max: 1200px;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.4;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: var(--space-3);
  top: -100%;
  background: var(--fg);
  color: #000;
  padding: var(--space-2) var(--space-3);
  z-index: 20;
}

.skip-link:focus {
  top: var(--space-3);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  z-index: 2;
  background-image:
    repeating-radial-gradient(circle at 0 0, #fff 0, transparent 1px, transparent 2px),
    repeating-radial-gradient(circle at 100% 100%, #fff 0, transparent 1px, transparent 2px);
  background-size: 3px 3px, 4px 4px;
  animation: noiseDrift 0.6s steps(2) infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  pointer-events: none;
}

.hero,
.drop,
.manifesto,
.site-footer {
  position: relative;
  z-index: 5;
}
header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-line-bar {
  width: 100%;
  margin: 0 auto;
  padding: 0.45rem var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: flex-end;
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: auto;
}

.header-line-bar a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  transition: color 200ms ease;
}

.header-line-bar a:hover,
.header-line-bar a:focus-visible {
  color: #fff;
}

.top-nav {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.95rem var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(8, 8, 8, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
}

.nav-groups {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.mobile-nav-backdrop {
  display: none;
}

.hamburger {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
}

.nav-main {
  min-width: 0;
}

.nav-utility {
  gap: var(--space-3);
  padding-left: var(--space-3);
  margin-left: var(--space-1);
  border-left: 1px solid #2f2f2f;
}

.nav-list a,
.nav-link-button {
  position: relative;
  text-decoration: none;
  color: var(--fg);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  transition: opacity 200ms ease, color 200ms ease;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-link-logo {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-list a::after,
.nav-link-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-link-button:hover,
.nav-link-button:focus-visible,
.nav-list a.is-active {
  /* color: #fff; */
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-link-button:hover::after,
.nav-link-button:focus-visible::after,
.nav-list a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-link-button {
  border: 0;
  background: transparent;
  font: inherit;
  padding: 0;
}

.profile-menu-item {
  position: relative;
}

.profile-menu {
  position: relative;
}

.profile-menu summary {
  list-style: none;
}

.profile-menu summary::-webkit-details-marker {
  display: none;
}

.profile-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  color: var(--fg);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}

.profile-menu-trigger::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
  transition: transform 180ms ease;
}

.profile-menu[open] .profile-menu-trigger::after {
  transform: rotate(-135deg) translateY(-0.08rem);
}

.profile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.85rem);
  min-width: 13rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.6rem;
  background: rgba(8, 8, 8, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.profile-menu-meta {
  margin: 0;
  padding: 0.2rem 0.78rem;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  word-break: break-word;
}

.profile-menu-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.18rem 0;
}

.profile-menu-panel a,
.profile-menu-button {
  display: block;
  width: 100%;
  padding: 0.72rem 0.78rem;
  text-align: left;
  background: transparent;
  border: 0;
}

.profile-menu-panel a:hover,
.profile-menu-panel a:focus-visible,
.profile-menu-button:hover,
.profile-menu-button:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
}

.profile-menu-form {
  width: 100%;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-link-button:hover,
.nav-link-button:focus-visible {
  opacity: 0.62;
  outline: none;
}

.inline-form {
  margin: 0;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.18rem;
  border: 1px solid #2f2f2f;
  background: rgba(10, 10, 10, 0.9);
}

.locale-switch-btn {
  border: 0;
  background: transparent;
  color: #8f8f8f;
  padding: 0.35rem 0.52rem;
  font: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.locale-switch-btn:hover,
.locale-switch-btn:focus-visible {
  color: var(--fg);
  outline: none;
}

.locale-switch-btn.is-active {
  background: #f4f4f4;
  color: #050505;
}

[data-cart-menu] {
  position: fixed;
  top: 15%;
  right: var(--space-4);
  z-index: 99;
  border: 1px solid #5f5f5f;
  background: linear-gradient(130deg, #4d4d4d 0%, #c6c6c6 50%, #505050 100%);
  padding: 0.62rem 0.8rem;
  border-radius: 20%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.cart-drawer-open [data-cart-menu] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.4rem) scale(0.96);
}

[data-cart-menu] a {
  color: #050505;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

[data-cart-menu] .cart-icon {
  width: 2.15rem;
  height: 2.15rem;
  fill: none;
  stroke: #050505;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-cart-menu] .cart-count-badge {
  min-width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.14);
  color: #050505;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.2rem;
}

[data-cart-menu] a:hover,
[data-cart-menu] a:focus-visible {
  opacity: 1;
  filter: brightness(1.08);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--space-7) var(--space-4);
}

.hero-inner {
  width: min(100%, var(--max));
}

.hero-subtitle {
  margin: 0 0 var(--space-1);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
}

h1 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(3.5rem, 18vw, 13rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 0.92;
  text-shadow: 0 0 20px rgba(245, 245, 245, 0.1);
}

.microtext {
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.hero-copy {
  max-width: 42rem;
  margin-top: var(--space-3);
  color: #d6d6d6;
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta {
  margin-top: var(--space-5);
  display: inline-block;
  padding: 0.9rem 1.25rem;
  color: #000;
  background: var(--chrome);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  border: 1px solid #bdbdbd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease,
    border-color 260ms ease;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.42) 50%, transparent 64%);
  transform: translateX(-135%);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  color: #0a0a0a;
  border-color: #cfcfcf;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.cta:hover::before,
.cta:focus-visible::before {
  transform: translateX(135%);
}

.hero-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-video-soon-wrap {
  position: relative;
  overflow: hidden;
  margin: 0;
  margin-top: var(--space-5);
  border: 1px solid #3e3e3e;
  background: #050505;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-video-soon-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.26);
  pointer-events: none;
}

.hero-video-soon-blur {
  filter: blur(18px) grayscale(26%) contrast(0.94) brightness(0.75);
  transform: scale(1.04);
}

.hero-video-soon-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(6, 6, 6, 0.5);
  color: #f4f4f4;
  padding: 0.6rem 1rem;
  letter-spacing: 0.28em;
  font-size: clamp(0.8rem, 2.4vw, 1rem);
  text-transform: uppercase;
  pointer-events: none;
}

.hero-intro {
  opacity: 0;
  transform: translateY(12px);
  animation: introLift 900ms cubic-bezier(0.2, 0.7, 0, 1) forwards;
}

.hero-intro:nth-child(1) { animation-delay: 120ms; }
.hero-intro:nth-child(2) { animation-delay: 220ms; }
.hero-intro:nth-child(3) { animation-delay: 300ms; }
.hero-intro:nth-child(4) { animation-delay: 390ms; }
.hero-intro:nth-child(5) { animation-delay: 500ms; }

.home-brand-strip,
.tier-landing,
.drop,
.collections-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
}

.home-brand-strip {
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-brand-strip p,
.home-brand-strip strong {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-brand-strip strong {
  color: #f2f2f2;
  font-weight: 500;
  text-align: right;
}

.tier-landing {
  padding-bottom: var(--space-4);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.section-head h2 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--muted);
}

.section-head h1 {
  margin: 0;
  color: var(--muted);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.tier-card-grid,
.collection-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.tier-card,
.collection-tier {
  position: relative;
  min-height: 24rem;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--border);
  background: #0b0b0b;
  color: var(--text-primary);
  text-decoration: none;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.tier-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: grayscale(24%) contrast(0.92) brightness(0.62);
  transition: transform 520ms ease, opacity 260ms ease;
}

.tier-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.12));
}

.tier-card > * {
  position: relative;
  z-index: 1;
}

.tier-card:hover,
.tier-card:focus-visible,
.collection-tier:hover,
.collection-tier:focus-visible,
.collection-tier.is-active {
  transform: translateY(-2px);
  border-color: rgba(242, 242, 242, 0.36);
  outline: none;
}

.tier-card:hover img,
.tier-card:focus-visible img {
  transform: scale(1.035);
  opacity: 0.56;
}

.tier-card--signature,
.collection-tier--signature,
.card--signature,
.detail-info--signature {
  border-color: rgba(143, 17, 24, 0.72);
}

.tier-card--signature::before,
.card--signature::before,
.collection-tier--signature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--signature-accent);
  z-index: 2;
}

.tier-card-number,
.collection-tier > span {
  color: var(--text-secondary);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.tier-card h3,
.collection-tier h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  letter-spacing: 0.08em;
  line-height: 1;
}

.tier-card p,
.collection-tier p {
  margin: 0;
  color: rgba(242, 242, 242, 0.72);
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-card-cta,
.collection-tier strong {
  margin-top: 0.8rem;
  color: #f3f3f3;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.tier-filter {
  margin: -0.45rem 0 var(--space-3);
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.tier-filter a,
.tier-badge,
.card-edition-label,
.checkout-tier-label,
.checkout-signature-note {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  border: 1px solid #343434;
  background: rgba(255, 255, 255, 0.025);
  color: #d8d8d8;
  padding: 0.34rem 0.62rem;
  text-decoration: none;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-filter a:hover,
.tier-filter a:focus-visible,
.tier-filter a.is-active {
  border-color: #d2d2d2;
  color: #f4f4f4;
  outline: none;
}

.tier-badge--signature,
.card-edition-label,
.checkout-signature-note {
  border-color: rgba(143, 17, 24, 0.72);
  color: #f2c3c6;
  background: rgba(143, 17, 24, 0.14);
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.card--essential {
  background: #090909;
}

.card--core {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    var(--surface);
}

.card--signature {
  background:
    linear-gradient(180deg, rgba(143, 17, 24, 0.12), rgba(255, 255, 255, 0.012)),
    #080808;
}

.card-head {
  margin: var(--space-3) var(--space-3) 0;
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
  align-items: center;
}

.card-name {
  margin: 0.75rem var(--space-3) 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.card-price {
  margin: 0.2rem var(--space-3) var(--space-3);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.card-link {
  position: relative;
  display: block;
  color: var(--fg);
  text-decoration: none;
}

.card-link.is-coming-soon {
  filter: blur(10px);
  pointer-events: none;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.card-status {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 1;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: var(--fg);
  border: 1px solid rgba(245, 245, 245, 0.4);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.18rem 0.34rem;
}

.card-limited-tag {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  z-index: 1;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 245, 0.82);
  border: 1px solid rgba(245, 245, 245, 0.22);
  background: rgba(0, 0, 0, 0.34);
  padding: 0.18rem 0.34rem;
  text-transform: uppercase;
}

.card-foot {
  min-height: 4.4rem;
  padding: 0.85rem var(--space-3) var(--space-3);
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-foot p,
.card-foot span {
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.card-foot span {
  color: #e7e7e7;
}

.card-view {
  position: absolute;
  left: var(--space-2);
  bottom: var(--space-2);
  z-index: 1;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--fg);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.15) 46%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.card:hover img,
.card:focus-within img {
  /* transform: scale(1.03); */
}

.card:hover .card-link::after,
.card:focus-within .card-link::after {
  opacity: 1;
}

.card:hover .card-view,
.card:focus-within .card-view {
  opacity: 1;
  transform: translateY(0);
}

.card.is-coming-soon:hover img,
.card.is-coming-soon:focus-within img {
  transform: none;
}

.card-soon {
  margin: var(--space-3);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.manifesto {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-7) var(--space-4);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--space-6);
}

.manifesto-quote {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5.2vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: 0.05em;
}

.manifesto-copy {
  margin: 0;
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.48;
  align-self: end;
}

.collections-intro {
  margin-bottom: var(--space-4);
  max-width: 52rem;
}

.collections-title {
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.95;
}

.collections-copy {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-tier {
  min-height: 19rem;
}

.collection-tier--essential {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), #090909;
}

.collection-tier--core {
  background: linear-gradient(180deg, rgba(160, 160, 160, 0.06), rgba(255, 255, 255, 0.01)), #0b0b0b;
}

.collection-tier--signature {
  background: linear-gradient(180deg, rgba(143, 17, 24, 0.16), rgba(255, 255, 255, 0.01)), #080808;
}

.collection-products {
  margin-top: var(--space-5);
}

.weekly-process-section {
  position: relative;
  isolation: isolate;
  margin: 0 auto;
  padding: clamp(2.75rem, 8vw, 6rem) 1.25rem;
  color: #7e705c;
  max-width: var(--max);
}

.weekly-process-section::before,
.weekly-process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.weekly-process-section::before {
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(24, 24, 24, 0.96) 0%, rgba(11, 11, 11, 0.98) 42%, rgba(2, 2, 2, 1) 100%);
  box-shadow:
    inset 0 0 4.5rem rgba(0, 0, 0, 0.65),
    0 1.75rem 4rem rgba(0, 0, 0, 0.4);
}

.weekly-process-section::after {
  border-radius: 1.75rem;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.95) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.6) 0 0.6px, transparent 0.7px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: soft-light;
}

.weekly-process-inner::before,
.weekly-process-inner::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 2.5rem);
  right: clamp(1rem, 4vw, 2.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 238, 231, 0) 0%, rgba(243, 238, 231, 0.2) 20%, rgba(243, 238, 231, 0.05) 50%, rgba(243, 238, 231, 0.2) 80%, rgba(243, 238, 231, 0) 100%);
  pointer-events: none;
}

.weekly-process-inner::before {
  top: 0;
}

.weekly-process-inner::after {
  bottom: 0;
}

.weekly-process-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 64rem);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.weekly-process-locale {
  display: inline-flex;
  gap: 0.25rem;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.weekly-process-locale-btn {
  border: 1px solid rgba(243, 238, 231, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(243, 238, 231, 0.7);
  padding: 0.45rem 0.7rem;
  min-width: 3rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.weekly-process-locale-btn:hover,
.weekly-process-locale-btn:focus-visible {
  color: #f8f4ef;
  border-color: rgba(243, 238, 231, 0.4);
  outline: none;
}

.weekly-process-locale-btn.is-active {
  color: #080808;
  background: #f3eee7;
  border-color: #f3eee7;
}

.weekly-process-header,
.weekly-process-block,
.weekly-process-timeline,
.weekly-process-footer {
  text-align: center;
}

.weekly-process-header {
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  max-width: 42rem;
}

.weekly-process-status {
  margin-top: 1.3rem;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.weekly-process-status-label,
.weekly-process-status-date,
.weekly-process-status-summary {
  margin: 0;
}

.weekly-process-status-label {
  color: rgba(243, 238, 231, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.weekly-process-status-date {
  color: rgba(243, 238, 231, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.weekly-process-status-summary {
  color: #f6f0e8;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.weekly-process-kicker {
  margin: 0 0 0.9rem;
  color: rgba(243, 238, 231, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.weekly-process-title,
.weekly-process-block-title,
.weekly-process-modal-title {
  margin: 0;
  font-family: "Playfair Display", "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 245, 235, 0.06);
}

.weekly-process-title {
  font-size: clamp(2rem, 7vw, 4.8rem);
  line-height: 1.05;
  text-wrap: balance;
}

.weekly-process-timeline {
  display: grid;
  gap: 1rem;
  margin: 0 auto clamp(2.25rem, 6vw, 4rem);
  width: min(100%, 48rem);
}

.weekly-process-timeline-line {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 238, 231, 0.08) 0%, rgba(243, 238, 231, 0.4) 50%, rgba(243, 238, 231, 0.08) 100%);
}

.weekly-process-timeline-steps {
  display: grid;
  gap: 0.85rem;
}

.weekly-process-timeline-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.weekly-process-timeline-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(243, 238, 231, 0.8);
  box-shadow: 0 0 10px rgba(243, 238, 231, 0.12);
}

.weekly-process-timeline-text {
  color: rgba(243, 238, 231, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.weekly-process-timeline-step.is-completed .weekly-process-timeline-dot {
  background: rgba(243, 238, 231, 0.42);
  box-shadow: none;
}

.weekly-process-timeline-step.is-completed .weekly-process-timeline-text {
  color: rgba(243, 238, 231, 0.48);
}

.weekly-process-timeline-step.is-active .weekly-process-timeline-dot {
  background: #f3eee7;
  box-shadow:
    0 0 0 6px rgba(243, 238, 231, 0.08),
    0 0 18px rgba(243, 238, 231, 0.24);
}

.weekly-process-timeline-step.is-active .weekly-process-timeline-text {
  color: #f7f3ee;
}

.weekly-process-timeline-step.is-next .weekly-process-timeline-dot {
  background: rgba(243, 238, 231, 0.76);
  box-shadow: 0 0 0 4px rgba(243, 238, 231, 0.05);
}

.weekly-process-grid {
  display: grid;
  gap: 1rem;
}

.weekly-process-block {
  position: relative;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(243, 238, 231, 0.08);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.012) 100%),
    rgba(7, 7, 7, 0.6);
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.weekly-process-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(243, 238, 231, 0.1) 0%, rgba(243, 238, 231, 0) 28%),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 52%);
  opacity: 0.75;
  pointer-events: none;
}

.weekly-process-block:hover,
.weekly-process-block:focus-within {
  transform: translateY(-4px);
  border-color: rgba(243, 238, 231, 0.18);
  box-shadow:
    0 1.1rem 2rem rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.weekly-process-block-state {
  position: relative;
  margin: 0 0 1rem;
  color: rgba(243, 238, 231, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.weekly-process-block-title {
  position: relative;
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.25;
}

.weekly-process-block-detail {
  position: relative;
  margin: 0.8rem 0 0;
  color: rgba(243, 238, 231, 0.72);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.weekly-process-block--completed {
  border-color: rgba(243, 238, 231, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0.008) 100%),
    rgba(7, 7, 7, 0.46);
}

.weekly-process-block--completed .weekly-process-block-title,
.weekly-process-block--completed .weekly-process-block-detail {
  color: rgba(243, 238, 231, 0.58);
}

.weekly-process-block--next {
  border-color: rgba(243, 238, 231, 0.16);
  box-shadow:
    0 0 0 1px rgba(243, 238, 231, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.weekly-process-block--next .weekly-process-block-state {
  color: rgba(243, 238, 231, 0.82);
}

.weekly-process-block--active {
  border-color: rgba(243, 238, 231, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%),
    rgba(10, 10, 10, 0.72);
  box-shadow:
    0 1.4rem 2.8rem rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(243, 238, 231, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.weekly-process-block--active::before {
  opacity: 1;
  background:
    linear-gradient(135deg, rgba(243, 238, 231, 0.16) 0%, rgba(243, 238, 231, 0.02) 30%),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 55%);
}

.weekly-process-block--active .weekly-process-block-state {
  color: #f5ede3;
}

.weekly-process-footer {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: clamp(2.25rem, 6vw, 4rem);
}

.weekly-process-footer-note {
  margin: 0;
  color: rgba(243, 238, 231, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
}

.weekly-process-modal {
  width: min(100%, 40rem);
  border: 1px solid rgba(243, 238, 231, 0.12);
  border-radius: 1.1rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  background:
    radial-gradient(circle at top, rgba(27, 27, 27, 0.98), rgba(8, 8, 8, 0.98) 72%);
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.weekly-process-modal-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: rgba(243, 238, 231, 0.78);
  line-height: 1.8;
}

.weekly-process-modal-list li + li {
  margin-top: 0.45rem;
}

@media (min-width: 768px) {
  .weekly-process-section {
    padding-inline: 2rem;
  }

  .weekly-process-timeline-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .weekly-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .weekly-process-section {
    margin-block: clamp(1.5rem, 8vw, 3rem);
    padding-inline: 0.9rem;
  }

  .weekly-process-section::before,
  .weekly-process-section::after {
    border-radius: 1.2rem;
  }

  .weekly-process-inner::before,
  .weekly-process-inner::after {
    left: 1rem;
    right: 1rem;
  }

  .weekly-process-timeline-step {
    justify-content: flex-start;
  }

  .weekly-process-modal {
    text-align: left;
  }

  .weekly-process-status-summary {
    line-height: 1.5;
    text-align: center;
  }
}

.detail {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4) var(--space-7);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: start;
}

.detail-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.detail-copy {
  color: var(--muted);
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.price {
  font-size: 1.1rem;
  margin: 0 0 var(--space-3);
}

.detail-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4) var(--space-7);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.detail-image-wrap {
  position: sticky;
  top: 92px;
}

.detail-gallery {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.65rem;
}

.detail-thumb {
  padding: 0;
  border: 1px solid #2f2f2f;
  background: #090909;
  cursor: pointer;
  overflow: hidden;
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  opacity: 0.82;
}

.detail-thumb.is-active,
.detail-thumb:hover,
.detail-thumb:focus-visible {
  border-color: #d0d0d0;
}

.detail-thumb.is-active img,
.detail-thumb:hover img,
.detail-thumb:focus-visible img {
  opacity: 1;
}

.detail-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #363636;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(160deg, #0f0f0f 0%, #050505 100%);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
}

.detail-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.detail-image-frame .drift-zoom-pane {
  background: #050505;
}

.detail-image-frame .drift-bounding-box {
  border: 0;
  background: transparent;
}

.detail-status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.62);
  color: #f3f3f3;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-info {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(8, 8, 8, 0.92);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.detail-kicker {
  margin: 0 0 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.detail-tier-line {
  margin: 0 0 0.85rem;
}

.detail-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.detail-price {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #dddddd;
  letter-spacing: 0.12em;
}

.detail-tier-tagline {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
}

.detail-desc {
  margin-top: 1.4rem;
  color: rgba(244, 244, 244, 0.8);
  line-height: 1.8;
}

.detail-desc p {
  margin: 0 0 0.75rem;
}

.detail-meta-grid {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.detail-meta-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.9rem 1rem;
}

.detail-meta-card p:last-child {
  margin: 0.25rem 0 0;
  color: #f2f2f2;
  word-break: break-word;
}

.signature-panel,
.product-story {
  border: 1px solid rgba(143, 17, 24, 0.55);
  background:
    linear-gradient(135deg, rgba(143, 17, 24, 0.14), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 10, 0.94);
  padding: 1rem;
}

.signature-panel {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.45rem;
}

.signature-panel strong,
.signature-panel span,
.signature-panel p {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signature-panel strong {
  color: #f4f4f4;
  font-size: 1rem;
}

.signature-panel span,
.signature-panel p {
  color: rgba(244, 244, 244, 0.72);
  font-size: 0.72rem;
}

.product-story {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.product-story p {
  margin: 0;
  max-width: 76ch;
  color: rgba(244, 244, 244, 0.78);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.9;
}

.detail-label {
  margin: 0 0 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.size-picker {
  display: grid;
  gap: 0.85rem;
}

.size-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-btn {
  min-width: 3.4rem;
  padding: 0.9rem 1rem;
  border: 1px solid #3a3a3a;
  background: #090909;
  color: #e7e7e7;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.size-btn:hover,
.size-btn:focus-visible {
  border-color: #8f8f8f;
  transform: translateY(-1px);
}

.size-input:checked + .size-btn,
.size-btn.active {
  border-color: #cfcfcf;
  background: linear-gradient(135deg, #efefef 0%, #bbbbbb 100%);
  color: #090909;
}

.selected-size {
  margin: 0.85rem 0 0;
  color: rgba(244, 244, 244, 0.62);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.selected-size-label {
  color: rgba(244, 244, 244, 0.44);
}

.selected-size-value {
  color: #f2f2f2;
}

.detail-cta-row {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.detail-buy-now {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #f3f3f3;
}

.detail-buy-now:hover,
.detail-buy-now:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.add-cart {
  width: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.detail-secondary-link {
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  text-decoration: none;
}

.detail-secondary-link:hover,
.detail-secondary-link:focus-visible {
  color: #f0f0f0;
}

.product-purchase-form {
  margin-top: 1.5rem;
}

.detail-support-copy {
  margin: 0;
  color: rgba(244, 244, 244, 0.5);
  line-height: 1.7;
  font-size: 0.82rem;
}

.size-chart {
  margin-top: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.table-wrap {
  overflow-x: auto;
}

.product-info-grid {
  /* width: min(var(--max), calc(100vw - 3rem)); */
  margin: 2rem auto var(--space-7);
  display: grid;
  /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
  gap: var(--space-4);
  align-items: start;
}

.product-copy-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.25rem;
  min-height: 0;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 10, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.product-copy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(243, 238, 231, 0.05) 0%, rgba(243, 238, 231, 0) 28%),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.05), transparent 52%);
  pointer-events: none;
}

.product-copy-card > * {
  position: relative;
}

.product-copy-card .section-head {
  margin-bottom: 0;
  min-height: 0;
}

.product-copy-body,
.product-faq-answer {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.85;
  max-width: 60ch;
}

.product-faq-list {
  display: grid;
  gap: 1.4rem;
}

.product-faq-item {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-faq-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-faq-question {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.size-chart table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.size-chart th,
.size-chart td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.95rem 0.8rem;
  text-align: left;
}

.size-chart thead th {
  color: var(--muted);
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 500;
}

.cart-drawer-open {
  overflow: hidden;
}

.cart-page {
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.cart-page-fixed {
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.cart-page-fixed.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.cart-card {
  position: relative;
  width: min(92vw, 430px);
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #070707;
  border-left: 1px solid #2c2c2c;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.cart-page-fixed.is-open .cart-card {
  transform: translateX(0);
}

.cart-head,
.cart-foot {
  padding: var(--space-3) var(--space-4);
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
  border-bottom: 1px solid #222;
  background: rgba(255, 255, 255, 0.01);
}

.cart-title {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 6vw, 2.4rem);
  letter-spacing: 0.08em;
}

.cart-close {
  border: 1px solid #555;
  background: transparent;
  color: var(--fg);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  text-decoration: none;
}

.cart-body {
  padding: var(--space-3) var(--space-4);
  overflow: auto;
  display: grid;
  gap: 1rem;
  flex: 1;
  align-content: start;
}

.cart-body .is-hidden,
.cart-foot .is-hidden {
  display: none !important;
}

.cart-foot {
  border-top: 1px solid #222;
  margin-top: auto;
  display: grid;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.015);
}

.cart-foot p,
.cart-foot strong {
  margin: 0;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
}

.cart-list {
  display: grid;
  gap: 0.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid #1f1f1f;
  background: #090909;
  padding: 0.95rem;
}

.cart-item-media {
  display: grid;
  align-content: start;
}

.cart-item img {
  width: 96px;
  height: 118px;
  object-fit: cover;
  border: 1px solid #2c2c2c;
  background: #050505;
}

.cart-item-main {
  min-width: 0;
  display: grid;
  gap: 0.85rem;
}

.cart-item-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-item-meta p {
  margin: 0 0 0.32rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.cart-item-meta p:nth-child(2) {
  color: var(--fg);
  font-size: 0.94rem;
  letter-spacing: 0.05em;
}

.cart-item-meta p:not(:nth-child(2)) {
  color: var(--muted);
}

.cart-item-tier {
  color: #e7e7e7 !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.16em !important;
}

.cart-item-limited {
  color: #f0b8bc !important;
}

.cart-item-line-total {
  margin-top: 0.45rem;
  color: #efe7dc;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.cart-inline-form {
  display: grid;
  gap: 0.45rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.cart-inline-label {
  font-size: 0.68rem;
  color: var(--muted);
}

.cart-qty-field {
  display: inline-grid;
  grid-template-columns: 2.8rem minmax(3rem, auto) 2.8rem;
  gap: 0.55rem;
  align-items: stretch;
}

.cart-step-btn {
  border: 1px solid #4c4c4c;
  background: #121212;
  color: #e2e2e2;
  min-width: 0;
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0;
  padding: 0;
  cursor: pointer;
}

.cart-step-btn:hover,
.cart-step-btn:focus-visible {
  border-color: #d8d8d8;
  color: #fff;
}

.cart-step-btn:disabled {
  cursor: wait;
  opacity: 0.55;
}

.cart-qty-value {
  border: 1px solid #4c4c4c;
  background: #121212;
  color: #f4f4f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.7rem 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.cart-remove-form {
  flex: 0 0 auto;
}

.cart-remove-btn {
  border: 1px solid #4c4c4c;
  background: #0f0f0f;
  color: #bfbfbf;
  min-width: 4.9rem;
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.75rem;
}

.cart-remove-btn:hover,
.cart-remove-btn:focus-visible {
  border-color: #c88989;
  color: #fff0f0;
}

.cart-empty,
.cart-status {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.cart-status {
  color: #ece2d4;
  border: 1px solid #2a2a2a;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem 0.9rem;
}

.cart-empty {
  color: var(--muted);
}

.cart-checkout-btn {
  border: 1px solid #6a6a6a;
  background: linear-gradient(130deg, #4d4d4d 0%, #c6c6c6 50%, #505050 100%);
  color: #050505;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  padding: 1rem 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.cart-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #1b1b1b;
}

.cart-summary-row p {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.cart-summary-row strong {
  color: #f3ede5;
  font-size: 1rem;
  font-weight: 600;
}

.cart-summary-row.is-total strong {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.cart-foot.is-empty {
  gap: 0.55rem;
}

.cart-checkout-btn:hover,
.cart-checkout-btn:focus-visible {
  filter: brightness(1.05);
}

.cart-route-page {
  min-height: calc(100vh - 70px);
}

.address-page,
.checkout-shell {
  max-width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: var(--space-6) var(--space-4) var(--space-7);
}

.address-card,
.checkout-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    rgba(9, 9, 9, 0.94);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.address-kicker {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.address-title {
  margin: 0.8rem 0 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.address-caption {
  margin: 0.85rem 0 0;
  color: rgba(244, 244, 244, 0.72);
  line-height: 1.8;
  max-width: 64ch;
}

.address-status {
  margin: 1rem 0 0;
  color: #ff3c3c;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.checkout-intro {
  display: grid;
  gap: 0.2rem;
}

.checkout-layout {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

.checkout-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(1rem, 2vw, 1.3rem);
}

.checkout-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.checkout-summary-head h2,
.checkout-summary-head p,
.checkout-summary-total,
.checkout-summary-empty {
  margin: 0;
}

.checkout-summary-head h2 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.checkout-summary-head p,
.checkout-summary-empty {
  color: var(--muted);
  font-size: 0.74rem;
}

.checkout-summary-table-wrap {
  overflow-x: auto;
}

.checkout-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.checkout-summary-table th,
.checkout-summary-table td {
  padding: 0.7rem 0.5rem;
  border-top: 1px solid #1f1f1f;
  text-align: left;
  vertical-align: top;
}

.checkout-summary-table td span {
  display: block;
}

.checkout-tier-label,
.checkout-signature-note {
  width: max-content;
  max-width: 100%;
  min-height: 1.45rem;
  margin-bottom: 0.38rem;
  padding: 0.24rem 0.44rem;
  font-size: 0.58rem;
}

.checkout-summary-table th {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.checkout-summary-thumb {
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  object-fit: cover;
  border: 1px solid #1f1f1f;
  background: #050505;
}

.checkout-summary-total-row {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid #262626;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
}

.checkout-summary-total {
  text-align: right;
  letter-spacing: 0.14em;
}

.checkout-highlight-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.checkout-highlight-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem 1rem;
}

.checkout-highlight-card p:last-child {
  margin: 0;
  color: rgba(244, 244, 244, 0.82);
  line-height: 1.7;
}

.address-form,
.checkout-form-grid {
  display: grid;
  gap: 0.65rem;
}

.address-form label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.address-form input,
.address-form textarea {
  width: 100%;
  border: 1px solid #343434;
  background: #090909;
  color: var(--fg);
  padding: 0.85rem 0.9rem;
}

.address-form textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.checkout-field-row > div {
  display: grid;
  gap: 0.65rem;
}

.checkout-actions {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.8rem;
}

.payment-instruction-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  padding: 1rem;
  display: grid;
  gap: 0.35rem;
}

.payment-instruction-card p {
  margin: 0;
}

.payment-qr-card {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: start;
}

.payment-qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  padding: 0.65rem;
}

.payment-qr-meta {
  display: grid;
  gap: 0.45rem;
}

.payment-qr-meta p {
  margin: 0;
}

.payment-qr-payload {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.7;
  word-break: break-all;
}

.payment-qr-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.payment-qr-action-btn,
.payment-qr-download-link {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.purchase-slip-preview {
  margin-top: var(--space-2);
  border: 1px solid #232323;
  background: #0b0b0b;
  padding: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.purchase-slip-preview img {
  width: min(100%, 180px);
  height: auto;
  border: 1px solid #1f1f1f;
  background: #fff;
  padding: 0.3rem;
}

.purchase-slip-upload {
  margin-top: var(--space-2);
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid #232323;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #0b0b0b;
}

.purchase-slip-upload-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid #1f1f1f;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.85rem 0.9rem;
}

.purchase-slip-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.purchase-slip-file-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 1px solid #6a6a6a;
  background: linear-gradient(130deg, #3c3c3c 0%, #d0d0d0 50%, #4a4a4a 100%);
  color: #080808;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purchase-slip-upload-meta {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.purchase-slip-file-name {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #f1f1f1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-slip-upload-meta p:last-child {
  color: var(--muted);
}

.purchase-slip-upload button {
  border: 1px solid #6a6a6a;
  background: linear-gradient(130deg, #4d4d4d 0%, #c6c6c6 50%, #505050 100%);
  color: #050505;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.purchase-slip-upload button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.purchase-slip-upload p {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.purchase-slip-selected-frame {
  display: none;
  place-items: center;
  min-height: 10rem;
  padding: 0.75rem;
  border: 1px solid #1f1f1f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.015);
}

.purchase-slip-selected-frame.is-visible {
  display: grid;
}

.purchase-slip-selected-preview {
  display: none;
  width: min(100%, 220px);
  height: auto;
  border: 1px solid #1f1f1f;
  background: #ffffff;
  padding: 0.3rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.purchase-slip-selected-preview.is-visible {
  display: block;
}

.purchase-history-list {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
}

.purchase-order-card {
  border: 1px solid #2c2c2c;
  background: #080808;
  padding: 0;
  display: grid;
  overflow: hidden;
}

.purchase-order-card p {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.purchase-order-toggle {
  width: 100%;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #080808;
  color: inherit;
  padding: var(--space-3);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) auto;
  gap: 0.85rem 1rem;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.purchase-order-toggle-main,
.purchase-order-toggle-meta,
.purchase-order-toggle-tags {
  display: grid;
  gap: 0.35rem;
}

.purchase-order-toggle-id {
  color: #f5f5f5;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.purchase-order-toggle-summary,
.purchase-order-toggle-meta span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.purchase-order-toggle-tags {
  justify-items: start;
  align-self: start;
}

.purchase-order-toggle-state-row {
  grid-column: 1 / -1;
}

.purchase-order-toggle-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.purchase-order-toggle-state {
  grid-column: 1 / -1;
  min-width: 0;
  justify-self: start;
  color: #f0e8dc;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 0.1rem;
}

.purchase-order-toggle-state::after {
  content: "+";
  display: inline-block;
  margin-left: 0.7rem;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(1px);
  transition: transform 220ms ease;
}

.purchase-order-toggle[aria-expanded="true"] .purchase-order-toggle-state::after {
  content: "−";
}

.purchase-order-body {
  border-top: 1px solid #191919;
  padding: 0 var(--space-3);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 220ms ease, padding-top 220ms ease, padding-bottom 220ms ease;
}

.purchase-order-body.is-open {
  opacity: 1;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.purchase-order-head {
  display: grid;
  gap: 0.35rem;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.32rem 0.72rem;
  border: 1px solid #353535;
  background: rgba(255, 255, 255, 0.04);
  color: #f1f1f1;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  border-radius: 999px;
}

.status-tag.is-pending,
.status-tag.is-awaiting-review,
.status-tag.is-pending-fulfillment {
  background: rgba(221, 181, 77, 0.14);
  border-color: rgba(221, 181, 77, 0.38);
  color: #f2d98d;
}

.status-tag.is-processing,
.status-tag.is-shipped {
  background: rgba(95, 152, 219, 0.14);
  border-color: rgba(95, 152, 219, 0.34);
  color: #b8d8fb;
}

.status-tag.is-paid,
.status-tag.is-delivered {
  background: rgba(84, 181, 122, 0.14);
  border-color: rgba(84, 181, 122, 0.34);
  color: #bde8ca;
}

.status-tag.is-failed,
.status-tag.is-canceled {
  background: rgba(214, 99, 99, 0.16);
  border-color: rgba(214, 99, 99, 0.34);
  color: #f2bbbb;
}

.purchase-order-lines {
  margin-top: var(--space-2);
  display: grid;
  gap: 0.7rem;
}

.purchase-order-line {
  border: 1px solid #222;
  background: #0f0f0f;
  padding: 0.6rem;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.purchase-order-line img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #1f1f1f;
  background: #050505;
}

.purchase-order-line-meta {
  display: grid;
  gap: 0.28rem;
}

.purchase-order-line-meta p:first-child {
  color: #f1f1f1;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.purchase-order-qr {
  margin-top: var(--space-2);
  border: 1px solid #232323;
  background: #0c0c0c;
  padding: 0.7rem;
  display: grid;
  justify-items: start;
  gap: 0.45rem;
}

.purchase-order-qr-toggle {
  border: 1px solid #6a6a6a;
  background: linear-gradient(130deg, #4d4d4d 0%, #c6c6c6 50%, #505050 100%);
  color: #050505;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 0.65rem 0.8rem;
  cursor: pointer;
}

.purchase-order-qr-panel {
  display: grid;
  gap: 0.45rem;
}

.purchase-order-qr-panel img {
  width: min(100%, 210px);
  height: auto;
  border: 1px solid #1d1d1d;
  background: #fff;
  padding: 0.35rem;
}

.purchase-order-qr-panel p {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.admin-payment-slip-preview {
  margin: 0 0 0.8rem;
  border: 1px solid #232323;
  background: linear-gradient(180deg, #101010 0%, #080808 100%);
  padding: 0.8rem;
  display: grid;
  gap: 0.6rem;
}

.admin-payment-slip-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.admin-payment-slip-preview p,
.admin-payment-slip-preview-head span {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.admin-payment-slip-preview-head span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(244, 244, 244, 0.52);
}

.admin-slip-btn {
  display: block;
  width: min(100%, 220px);
  border: 1px solid #2d2d2d;
  background: #050505;
  padding: 0.32rem;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.admin-slip-btn:hover,
.admin-slip-btn:focus-visible,
.admin-payment-detail-slip-btn:hover,
.admin-payment-detail-slip-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(232, 232, 232, 0.3);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.admin-slip-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
}

.admin-slip-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: var(--space-4);
  overflow: auto;
}

.admin-slip-modal[hidden] {
  display: none !important;
}

.admin-slip-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
}

.admin-slip-modal-card {
  position: relative;
  width: min(100%, 780px);
  border: 1px solid #313131;
  background: #0a0a0a;
  padding: var(--space-3);
  display: grid;
  gap: var(--space-2);
  z-index: 1;
}

.admin-slip-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}

.admin-slip-modal-head h2 {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.admin-slip-modal-head button {
  border: 1px solid #4f4f4f;
  background: #111;
  color: #ddd;
  width: 1.7rem;
  height: 1.7rem;
  cursor: pointer;
}

.admin-slip-modal-card img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #fff;
  border: 1px solid #1f1f1f;
}

.admin-payment-detail-card {
  width: min(100%, 960px);
}

.admin-procurement-detail-card {
  width: min(100%, 1080px);
  max-height: min(92vh, 960px);
  overflow-y: auto;
}

.admin-product-edit-card {
  width: min(100%, 860px);
}

.admin-product-delete-card {
  width: min(100%, 420px);
}

.cart-confirm-modal-card {
  width: min(100%, 420px);
}

.cart-confirm-copy {
  margin: 0;
  color: rgba(244, 244, 244, 0.78);
  line-height: 1.7;
}

.cart-confirm-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cart-confirm-cancel {
  width: 100%;
}

.admin-product-edit-status {
  margin-top: -0.2rem;
}

.admin-product-delete-copy {
  margin: 0;
  color: rgba(244, 244, 244, 0.78);
  line-height: 1.7;
}

.admin-product-edit-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.admin-product-edit-form textarea {
  grid-column: 1 / -1;
  min-height: 9rem;
}

.admin-product-image-preview,
.admin-product-gallery-preview,
.admin-product-edit-checks,
.admin-product-edit-actions {
  grid-column: 1 / -1;
}

.admin-product-delete-actions {
  min-width: 0;
}

.admin-product-image-preview {
  border: 1px solid #232323;
  background: #080808;
  min-height: 13rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.admin-product-image-preview img {
  width: 100%;
  max-height: 18rem;
  object-fit: contain;
  border: 1px solid gray;
  border-radius: 4px;
}

.admin-product-image-preview-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-product-gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  min-height: 6rem;
  border: 1px solid #232323;
  background: #080808;
  padding: 0.7rem;
}

.admin-product-gallery-empty {
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-product-gallery-tile {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid #303030;
  background: #050505;
  overflow: hidden;
}

.admin-product-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-product-gallery-tile span {
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  background: rgba(0, 0, 0, 0.72);
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.2rem 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.admin-upload-field {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-upload-field input[type="file"] {
  width: 100%;
  border: 1px dashed #3a3a3a;
  background: #090909;
  color: var(--fg);
  padding: 0.75rem 0.8rem;
}

.admin-payment-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.admin-detail-cell {
  border: 1px solid #232323;
  background: #0d0d0d;
  padding: 0.75rem;
  display: grid;
  gap: 0.25rem;
}

.admin-detail-cell p:last-child,
.admin-payment-detail-section p:last-child {
  margin: 0;
}

.admin-detail-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.admin-payment-detail-section {
  display: grid;
  gap: 0.6rem;
}

.admin-payment-detail-slip-btn {
  width: min(100%, 340px);
  border: 1px solid #2c2c2c;
  background: #070707;
  padding: 0.35rem;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.admin-payment-detail-section img {
  display: block;
  width: 100%;
  background: #fff;
}

.admin-procurement-detail-form {
  gap: 0.75rem;
}

.login-page {
  min-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
  padding: var(--space-5) var(--space-4) var(--space-7);
  position: relative;
  z-index: 5;
}

.login-card {
  width: min(100%, 480px);
  border: 1px solid #2c2c2c;
  background: #0d0d0d;
  padding: var(--space-5);
}

.login-kicker {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.login-title {
  margin: var(--space-2) 0 0;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1;
}

.login-caption {
  margin: var(--space-2) 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.login-form {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.65rem;
}

.login-form label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.login-form input {
  width: 100%;
  border: 1px solid #3a3a3a;
  background: #080808;
  color: var(--fg);
  padding: 0.75rem;
}

.login-form input:focus {
  outline: 0;
  border-color: #c6c6c6;
}

.login-form button {
  margin-top: var(--space-2);
  border: 1px solid #6a6a6a;
  background: linear-gradient(130deg, #4d4d4d 0%, #c6c6c6 50%, #505050 100%);
  color: #050505;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  padding: 0.78rem 0.9rem;
  cursor: pointer;
}

.login-form button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.login-form-link {
  margin: 0;
  text-align: right;
  font-size: 0.75rem;
}

.login-form-link a {
  color: #d7d7d7;
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 215, 215, 0.35);
}

.login-form-link a:hover,
.login-form-link a:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

.login-status {
  min-height: 1rem;
  margin: var(--space-3) 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.login-switch {
  margin: 0.45rem 0 0;
  color: #a8a8a8;
  font-size: 0.78rem;
}

.login-switch a {
  color: #e7e7e7;
  text-decoration: none;
  border-bottom: 1px solid rgba(231, 231, 231, 0.35);
}

.login-switch a:hover,
.login-switch a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  /* border-top: 1px solid var(--line); */
  padding: var(--space-5) var(--space-4) var(--space-6);
  display: flex;
  gap: var(--space-3);
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.site-footer a,
.site-footer p {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--fg);
}

.admin-page {
  min-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
  padding: var(--space-5) var(--space-4) var(--space-7);
  position: relative;
  z-index: 5;
}

.admin-card {
  width: min(100%, 1180px);
  border: 1px solid #2c2c2c;
  background: #0d0d0d;
  padding: var(--space-5);
}

.admin-kicker {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.admin-title {
  margin: var(--space-2) 0 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1;
}

.admin-intro {
  margin: var(--space-2) 0 0;
  color: var(--muted);
  max-width: 52rem;
}

.admin-nav {
  margin-top: var(--space-3);
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.admin-nav a {
  border: 1px solid #3a3a3a;
  color: #e8e8e8;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.68rem;
}

.admin-nav a:hover,
.admin-nav a:focus-visible,
.admin-nav a.is-active {
  border-color: #808080;
  background: rgba(255, 255, 255, 0.04);
}

.admin-stats {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.admin-stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: var(--space-3);
}

.admin-stat-label,
.admin-stat-value,
.admin-empty {
  margin: 0;
}

.admin-stat-label {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.admin-stat-value {
  margin-top: 0.4rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.admin-table-wrap {
  margin-top: var(--space-4);
}

.admin-head-row {
  margin-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.admin-status {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.admin-table-scroll {
  margin-top: var(--space-3);
  overflow-x: auto;
  border: 1px solid var(--line);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  padding: 0.78rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
  font-size: 0.78rem;
}

.admin-table th {
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.admin-product-table-preview {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.admin-product-table-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-product-table-preview span {
  padding: 0.3rem;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
}

.admin-row-actions {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.75rem;
  align-items: stretch;
  justify-content: start;
}

.admin-row-actions .admin-inline-form {
  margin: 0;
}

.admin-row-actions .admin-mini-btn {
  min-width: 8.5rem;
  justify-content: center;
  text-align: center;
}

.admin-empty {
  margin-top: var(--space-3);
  color: var(--muted);
}

.admin-shipments-board {
  display: grid;
  gap: 0.9rem;
}

.admin-shipments-toolbar {
  margin-top: var(--space-3);
  display: grid;
  gap: 0.85rem;
}

.admin-shipments-search {
  display: grid;
  gap: 0.45rem;
}

.admin-shipments-search input {
  width: 100%;
  border: 1px solid #343434;
  background: #090909;
  color: var(--fg);
  padding: 0.78rem 0.85rem;
}

.admin-shipments-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-filter-chip {
  border: 1px solid #3f3f3f;
  background: #111;
  color: #ddd;
  padding: 0.55rem 0.72rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  cursor: pointer;
}

.admin-filter-chip span {
  color: var(--muted);
}

.admin-filter-chip.is-active,
.admin-filter-chip:hover,
.admin-filter-chip:focus-visible {
  border-color: #8a8a8a;
  background: rgba(255, 255, 255, 0.05);
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.5rem;
  border: 1px solid #3a3a3a;
  background: #121212;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.admin-status-pill.is-pending-fulfillment {
  border-color: #73603b;
  color: #e7d39a;
}

.admin-status-pill.is-processing {
  border-color: #5d6778;
  color: #c7d6f0;
}

.admin-status-pill.is-shipped {
  border-color: #476749;
  color: #bfe0c2;
}

.admin-status-pill.is-delivered {
  border-color: #4f6f61;
  color: #c5ebe0;
}

.admin-status-pill.is-order-pending {
  border-color: #7a6840;
  color: #e4cf9c;
}

.admin-status-pill.is-order-awaiting-review {
  border-color: #77603a;
  color: #efd99b;
}

.admin-status-pill.is-order-paid {
  border-color: #476749;
  color: #bfe0c2;
}

.admin-status-pill.is-order-failed,
.admin-status-pill.is-order-canceled {
  border-color: #7a4343;
  color: #ecb0b0;
}

.admin-shipping-table td strong {
  font-weight: 600;
}

.admin-shipping-address {
  border: 1px solid #232323;
  background: #0d0d0d;
  padding: 0.9rem;
  display: grid;
  gap: 0.3rem;
}

.admin-shipping-address p {
  margin: 0;
}

.admin-shipping-detail-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-shipping-detail-form button {
  grid-column: 1 / -1;
}

.admin-order-detail-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.admin-flash {
  margin: var(--space-3) 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg);
}

.admin-form-card {
  margin-top: var(--space-3);
  border: 1px solid var(--line);
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.02);
}

.admin-low-stock-panel {
  margin-top: var(--space-3);
}

.admin-low-stock-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--fg);
  font-size: 0.82rem;
}

.admin-forms-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.admin-section-title {
  margin: 0 0 var(--space-3);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.admin-form-grid {
  display: grid;
  gap: 0.8rem;
}

.admin-form-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.admin-form-grid input:not([type="checkbox"]),
.admin-form-grid select,
.admin-form-grid textarea,
.admin-inline-form input:not([type="checkbox"]),
.admin-inline-form select {
  width: 100%;
  border: 1px solid #343434;
  background: #090909;
  color: var(--fg);
  padding: 0.7rem 0.8rem;
}

.admin-form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  width: auto;
}

.admin-check input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: #d7d7d7;
}

.admin-action-btn,
.admin-mini-btn {
  border: 1px solid #6a6a6a;
  background: linear-gradient(130deg, #4d4d4d 0%, #c6c6c6 50%, #505050 100%);
  color: #050505;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-action-btn.danger,
.admin-mini-btn.danger {
  background: linear-gradient(130deg, #6a2a2a 0%, #d48e8e 50%, #6a2a2a 100%);
}

.admin-inline-form,
.admin-form-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.admin-threshold-form {
  grid-template-columns: minmax(5rem, 7rem) auto;
}

.admin-cell-input {
  width: 100%;
  border: 1px solid #343434;
  background: #090909;
  color: var(--fg);
  padding: 0.55rem 0.7rem;
}

.admin-inventory-product-cell {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 14rem;
}

.admin-inventory-product-cell img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.admin-inventory-product-cell p {
  margin: 0;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  border: 1px solid transparent;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.admin-badge-ok {
  border-color: rgba(148, 205, 162, 0.35);
  background: rgba(148, 205, 162, 0.12);
  color: #c7f0d0;
}

.admin-badge-low {
  border-color: rgba(228, 150, 150, 0.4);
  background: rgba(228, 150, 150, 0.12);
  color: #ffb8b8;
}

.admin-badge-draft {
  border-color: rgba(189, 189, 189, 0.35);
  background: rgba(189, 189, 189, 0.1);
  color: #e2e2e2;
}

.admin-badge-approved,
.admin-badge-received {
  border-color: rgba(148, 205, 162, 0.35);
  background: rgba(148, 205, 162, 0.12);
  color: #c7f0d0;
}

.admin-badge-canceled {
  border-color: rgba(228, 150, 150, 0.4);
  background: rgba(228, 150, 150, 0.12);
  color: #ffb8b8;
}

.admin-badge-partially-received {
  border-color: rgba(220, 190, 124, 0.4);
  background: rgba(220, 190, 124, 0.12);
  color: #f1d998;
}

.admin-procurement-grid {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.admin-procurement-card {
  margin-top: var(--space-3);
  border: 1px solid #2f2f2f;
  background: #090909;
  padding: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.admin-procurement-card h2,
.admin-procurement-card p {
  margin: 0;
}

.admin-procurement-card p {
  color: #b2b2b2;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.admin-procurement-lines {
  display: grid;
  gap: 0.45rem;
}

.admin-procurement-line {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.7fr auto;
  gap: 0.45rem;
  align-items: center;
}

.admin-procurement-extra-line {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr auto;
  gap: 0.45rem;
  align-items: center;
}

.admin-row-details summary {
  cursor: pointer;
  color: var(--muted);
  margin-bottom: 10px;
}

.admin-row-details[open] {
  min-width: 320px;
}

.admin-inline-meta {
  margin: 0.75rem 0;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.danger-inline {
  margin-top: 0.65rem;
}

.top-nav {
  width: min(100%, var(--max));
}

.hp {
  --hp-bg: #070707;
  --hp-panel: #0e0e0e;
  --hp-text: #f2f2f0;
  --hp-muted: #8a8a86;
  --hp-line: #242424;
  --hp-red: #a40f19;
  position: relative;
  z-index: 5;
  background: var(--hp-bg);
  color: var(--hp-text);
}

.hp h1,
.hp h2,
.hp h3,
.hp blockquote,
.hp p {
  margin: 0;
}

.hp h1,
.hp h3,
.hp blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hp-container {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.hp-eyebrow {
  color: var(--hp-muted);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hp-kicker {
  color: #858585;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hp-cta {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.4rem;
  border: 1px solid #fff;
  background: #fff;
  color: #070707;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hp-btn:hover,
.hp-btn:focus-visible {
  transform: translateY(-1px);
  opacity: 0.9;
  outline: none;
}

.hp-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #4b4b4b;
}

.hp-hero {
  position: relative;
  height: calc(100vh - var(--header-h, 68px));
  overflow: hidden;
  border-bottom: 1px solid var(--hp-line);
}

.hp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75) brightness(0.6);
}

.hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.64) 100%); */
}

.hp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.35) 55%, var(--hp-bg) 100%); */
}

.hp-hero-inner {
  position: relative;
  z-index: 2;
  height: calc(100vh - var(--header-h, 68px));
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 0 0 5.25rem;
}

.hp-hero-copy {
  max-width: 51rem;
}

.hp-hero h1 {
  font-size: clamp(54px, 8vw, 132px);
  line-height: 0.88;
  color: var(--hp-text);
}

.hp-hero-sub {
  margin-top: 1.4rem;
  max-width: 39rem;
  color: #b9b9b5;
  font-size: 0.875rem;
  line-height: 1.8;
}

.hp-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--hp-line);
}

.hp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.1rem;
}

.hp-section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 64px);
  letter-spacing: 0.03em;
  color: var(--hp-text);
}

.hp-section-note {
  max-width: 32rem;
  color: var(--hp-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.hp-section-link {
  color: var(--hp-text);
  border-bottom: 1px solid rgba(242, 242, 240, 0.45);
  padding-bottom: 0.24rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease, border-color 200ms ease;
}

.hp-section-link:hover,
.hp-section-link:focus-visible {
  color: #fff;
  border-color: #fff;
  outline: none;
}

.hp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hp-line);
  border: 1px solid var(--hp-line);
}

.hp-product-grid .product-card {
  border: 0;
  min-width: 0;
}

.hp-product-grid .card-head {
  margin: 1rem 1rem 0;
}

.hp-product-grid .card-name {
  min-height: 2.2rem;
  margin: 0.85rem 1rem 0;
  color: var(--hp-text);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hp-product-grid .card-price {
  margin: 0.28rem 1rem 1rem;
}

.hp-product-grid .card-foot {
  min-height: 4.9rem;
  padding: 0.95rem 1rem 1rem;
}

.hp-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem;
  background: var(--hp-panel);
  color: var(--hp-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hp-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hp-line);
  border: 1px solid var(--hp-line);
}

.hp-tier {
  min-height: 32rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--hp-panel);
  color: var(--hp-text);
  text-decoration: none;
  transition: background 240ms ease;
}

.hp-tier:hover,
.hp-tier:focus-visible {
  background: #141414;
  outline: none;
}

.hp-tier--signature {
  border-top: 2px solid var(--hp-red);
}

.hp-tier--signature .hp-tier-number,
.hp-tier--signature .hp-tier-name,
.hp-tier--signature .hp-tier-price {
  color: #cf1d27;
}

.hp-tier-number {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #777;
}

.hp-tier-name {
  margin-top: 0.6rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hp-tier-tagline {
  margin-top: 0.85rem;
  max-width: 16rem;
  color: #aaa;
  font-size: 0.72rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.hp-tier-price {
  margin-top: auto;
  padding-top: clamp(4rem, 12vw, 10rem);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
}

.hp-tier-price small {
  display: block;
  margin-top: 0.45rem;
  color: var(--hp-muted);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.hp-tier-link {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
}

.hp-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  background: var(--hp-line);
  border: 1px solid var(--hp-line);
}

.hp-feature-media {
  position: relative;
  display: block;
  min-height: 38rem;
  overflow: hidden;
  background: #050505;
}

.hp-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.05) brightness(0.82);
  transition: transform 520ms ease, filter 240ms ease;
}

.hp-feature-media:hover img,
.hp-feature-media:focus-visible img {
  transform: scale(1.03);
  filter: grayscale(0) contrast(1.08) brightness(0.9);
}

.hp-feature-copy {
  padding: clamp(1.75rem, 4vw, 3.1rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--hp-panel);
}

.hp-feature-copy h3 {
  margin: 0.85rem 0;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--hp-text);
}

.hp-feature-copy > p {
  max-width: 30rem;
  color: #9a9a97;
  line-height: 1.8;
  font-size: 0.8rem;
}

.hp-signature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 41rem;
  border: 1px solid #2a1719;
  background:
    radial-gradient(circle at 18% 25%, rgba(164, 15, 25, 0.18), transparent 35%),
    #0b0b0b;
}

.hp-signature-copy {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-signature-copy .hp-kicker {
  color: #c52a33;
}

.hp-signature-copy h3 {
  margin: 1rem 0;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.94;
  color: var(--hp-text);
}

.hp-limited {
  margin: 1.4rem 0;
  padding: 1.1rem 0;
  border-top: 1px solid #402125;
  border-bottom: 1px solid #402125;
  color: #d6d6d2;
  font-size: 0.72rem;
  line-height: 1.8;
  letter-spacing: 0.18em;
}

.hp-signature-copy > p:not(.hp-kicker):not(.hp-limited) {
  max-width: 26rem;
  color: #979793;
  line-height: 1.8;
  font-size: 0.8rem;
}

.hp-signature-media {
  position: relative;
  display: block;
  min-height: 41rem;
  overflow: hidden;
  background: #0b0b0b;
}

.hp-signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.08) brightness(0.72);
  transition: transform 520ms ease, filter 240ms ease;
}

.hp-signature-media:hover img,
.hp-signature-media:focus-visible img {
  transform: scale(1.025);
  filter: grayscale(0) contrast(1.1) brightness(0.8);
}

.hp-manifesto {
  --manifesto-fg: #f3efe9;
  --manifesto-muted: #ccc6be;
  --manifesto-line: rgba(255, 255, 255, 0.2);
  --manifesto-red: #8d1518;
  position: relative;
  isolation: isolate;
  padding: clamp(4.25rem, 8vw, 6.8rem) 0 0;
  overflow: hidden;
  color: var(--manifesto-fg);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.1), transparent 17rem),
    radial-gradient(circle at 34% 56%, rgba(255, 255, 255, 0.06), transparent 24rem),
    #030303;
}

/* .hp-manifesto::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28%;
  bottom: 0;
  z-index: -1;
  opacity: 0.9;
  background:
    radial-gradient(ellipse at 31% 52%, rgba(255, 255, 255, 0.22) 0 2%, rgba(255, 255, 255, 0.09) 12%, transparent 34%),
    radial-gradient(ellipse at 68% 48%, rgba(255, 255, 255, 0.17) 0 2%, rgba(255, 255, 255, 0.06) 12%, transparent 38%),
    conic-gradient(from 205deg at 50% 54%, transparent 0 18%, rgba(255, 255, 255, 0.08) 22%, transparent 34% 54%, rgba(255, 255, 255, 0.06) 61%, transparent 70%);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  width: 100%;
} */

.hp-manifesto-hero {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.hp-manifesto .hp-eyebrow {
  margin-bottom: 1.35rem;
  color: var(--manifesto-muted);
}

.hp-manifesto blockquote {
  margin: 0 auto;
  color: var(--manifesto-fg);
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hp-manifesto blockquote span {
  display: block;
}

.hp-manifesto blockquote b {
  color: var(--manifesto-red);
  font-weight: 700;
}

.hp-manifesto-intro {
  margin: 3.15rem auto 0 !important;
  color: #d7d2cb;
  font-size: 1.02rem;
  line-height: 1.65;
  text-align: center;
}

.hp-manifesto-core {
  display: grid;
  grid-template-columns: 1fr minmax(25rem, 1.45fr) 1fr;
  align-items: center;
  min-height: 34rem;
  gap: 1.75rem;
  position: relative;
  padding: 0.5rem 0 1.25rem;
}

.hp-manifesto-panel {
  max-width: 19rem;
  margin: auto;
  text-align: center;
}

.hp-manifesto-panel h3,
.hp-manifesto-rift-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hp-manifesto-panel h3 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
}

.hp-manifesto-panel--sin h3,
.hp-manifesto-rift-label,
.hp-manifesto-value--red span {
  color: var(--manifesto-red);
}

.hp-manifesto-label {
  margin-top: 0.3rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--manifesto-fg);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.hp-manifesto-divider {
  display: block;
  width: 76%;
  height: 1px;
  margin: 1rem auto 1.25rem;
  background: #c8c3bc;
  opacity: 0.75;
}

.hp-manifesto-panel > p:not(.hp-manifesto-label),
.hp-manifesto-rift-copy > p:not(.hp-manifesto-rift-label) {
  color: #d8d3cc;
  font-size: 1rem;
  line-height: 1.75;
}

.hp-manifesto-rift {
  position: relative;
  min-height: 35rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.2rem;
  text-align: center;
}

.hp-manifesto-v {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, "Times New Roman", serif;
  color: #bdb8b0;
  font-size: clamp(9rem, 18vw, 14.4rem);
  line-height: 0.72;
  letter-spacing: -0.06em;
  opacity: 0.9;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.12),
    0 0 48px rgba(255, 255, 255, 0.05);
}

.hp-manifesto-rift-copy {
  position: relative;
  z-index: 1;
}

.hp-manifesto-rift-copy h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

.hp-manifesto-rift-label {
  margin: 0.2rem 0 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.hp-manifesto-values {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--manifesto-line);
  border-bottom: 1px solid var(--manifesto-line);
}

.hp-manifesto-value {
  min-height: 5.5rem;
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--manifesto-line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--manifesto-fg);
  font-size: 0.85rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.hp-manifesto-value:last-child {
  border-right: 0;
}

.hp-manifesto-value span {
  width: 2rem;
  flex: 0 0 2rem;
  text-align: center;
  font-size: 1.55rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes introLift {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes noiseDrift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1px, 1px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(1px, 0); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .noise-overlay,
  .hero-intro,
  .cta::before,
  .hp-btn,
  .hp-tier,
  .hp-feature-media img,
  .hp-signature-media img {
    animation: none;
    transition: none;
  }

  .hero-intro {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .hp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-tiers {
    grid-template-columns: 1fr;
  }

  .hp-tier {
    min-height: 24rem;
  }

  .hp-tier-price {
    padding-top: 4.5rem;
  }

  .hp-feature,
  .hp-signature {
    grid-template-columns: 1fr;
  }

  .hp-feature-media,
  .hp-signature-media {
    min-height: 26rem;
  }

  .hp-manifesto::before {
    left: 8%;
    right: 8%;
  }

  .hp-manifesto-core {
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 0.75rem;
    min-height: 31rem;
  }

  .hp-manifesto-panel h3 {
    font-size: 2.25rem;
  }

  .hp-manifesto-label {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .hp-manifesto-panel > p:not(.hp-manifesto-label),
  .hp-manifesto-rift-copy > p:not(.hp-manifesto-rift-label) {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .hp-manifesto-rift {
    min-height: 29rem;
  }

  .hp-manifesto-v {
    font-size: 10.5rem;
  }

  .hp-manifesto-rift-copy h3 {
    font-size: 1.45rem;
  }

  .hp-manifesto-rift-label {
    font-size: 0.86rem;
  }

  .hp-manifesto-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-manifesto-value:nth-child(2n) {
    border-right: 0;
  }

  .hp-manifesto-value {
    border-bottom: 1px solid var(--manifesto-line);
  }

  .hp-manifesto-value:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .hp-signature-copy {
    order: 2;
  }

  .top-nav {
    align-items: center;
    flex-wrap: wrap;
    row-gap: var(--space-2);
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 0.8rem 1rem;
    border-radius: 0;
  }

  .header-line-bar {
    padding: 0.42rem 1rem;
    justify-content: center;
  }

  [data-cart-menu] {
    top: 10%;
    right: var(--space-1);
  }

  .hamburger {
    margin-left: auto;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid #4e4e4e;
    background: #0b0b0b;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.24rem;
    padding: 0;
    cursor: pointer;
  }

  .hamburger span {
    width: 1.1rem;
    height: 1px;
    background: var(--fg);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .hamburger.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-groups {
    display: none;
    width: 100%;
    margin-left: 0;
    gap: var(--space-2);
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid #202020;
    margin-top: var(--space-2);
    padding-top: var(--space-2);
  }

  .nav-groups.is-open {
    display: flex;
    position: relative;
    z-index: 31;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 29;
    border: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
    display: block;
  }

  .mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-main,
  .nav-list {
    min-width: 100%;
    margin-left: 0;
    padding-left: 0;
    gap: var(--space-2);
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-menu-panel {
    position: static;
    margin-top: 0.75rem;
    min-width: 0;
  }

  .nav-utility {
    border-left: 0;
    margin-left: 0;
    padding-left: var(--space-2);
    padding-top: var(--space-2);
    border-top: 1px solid #232323;
  }

  .product-grid,
  .tier-card-grid,
  .collection-tier-grid,
  .manifesto,
  .product-info-grid,
  .detail-grid,
  .detail-layout,
  .admin-stats,
  .admin-forms-two {
    grid-template-columns: 1fr;
  }

  .detail-image-wrap {
    position: static;
  }

  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .checkout-layout,
  .checkout-highlight-grid,
  .checkout-field-row,
  .payment-qr-card,
  .admin-payment-detail-grid,
  .admin-product-edit-form,
  .admin-shipping-detail-form,
  .admin-order-detail-form {
    grid-template-columns: 1fr;
  }

  .admin-product-gallery-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-order-toggle {
    grid-template-columns: 1fr;
  }

  .purchase-order-toggle-state {
    justify-self: start;
    min-width: 0;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-media {
    justify-items: start;
  }

  .cart-item-topline {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-forms-two {
    grid-template-columns: 1fr;
  }

  .admin-procurement-grid,
  .admin-procurement-line,
  .admin-procurement-extra-line {
    grid-template-columns: 1fr;
  }

  .tier-card,
  .collection-tier {
    min-height: 18rem;
  }
}

@media (max-width: 640px) {
  .hp-hero-inner {
    padding-bottom: 3rem;
  }

  .hp-hero h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .hp-cta {
    width: 100%;
  }

  .hp-btn {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hp-container,
  .hp-hero-inner {
    width: min(calc(100% - 1.75rem), var(--max));
  }

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

  .hp-section-head {
    display: block;
  }

  .hp-section-link {
    display: inline-flex;
    margin-top: 1rem;
  }

  .hp-section-note {
    margin-top: 1rem;
  }

  .hp-section-title {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .hp-tiers {
    grid-template-columns: 1fr;
  }

  .hp-product-grid {
    grid-template-columns: 1fr;
  }

  .hp-tier {
    min-height: 22rem;
  }

  .hp-tier-price {
    padding-top: 2.5rem;
  }

  .hp-feature,
  .hp-signature {
    grid-template-columns: 1fr;
  }

  .hp-feature-media,
  .hp-signature-media {
    min-height: 20rem;
  }

  .hp-feature-copy,
  .hp-signature-copy {
    padding: 1.9rem;
  }

  .hp-feature-copy h3,
  .hp-signature-copy h3 {
    font-size: 2.5rem;
  }

  .hp-manifesto {
    padding-top: 4.25rem;
  }

  .hp-manifesto::before {
    left: -8%;
    right: -8%;
    top: 24%;
    bottom: 40%;
  }

  .hp-manifesto blockquote {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 1;
  }

  .hp-manifesto-intro {
    font-size: 0.82rem;
    line-height: 1.7;
  }

  .hp-manifesto-core {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "rift rift"
      "neb sin";
    gap: 1.15rem 0.75rem;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hp-manifesto-panel--neb {
    grid-area: neb;
  }

  .hp-manifesto-panel--sin {
    grid-area: sin;
  }

  .hp-manifesto-rift {
    grid-area: rift;
    min-height: 18.75rem;
    padding-bottom: 0.25rem;
  }

  .hp-manifesto-v {
    top: 38%;
    font-size: 9.4rem;
  }

  .hp-manifesto-panel {
    align-self: start;
    padding: 0.5rem 0.25rem 1.25rem;
  }

  .hp-manifesto-panel h3 {
    font-size: 1.95rem;
  }

  .hp-manifesto-label {
    font-size: 0.63rem;
  }

  .hp-manifesto-divider {
    margin: 0.8rem auto 1rem;
  }

  .hp-manifesto-panel > p:not(.hp-manifesto-label),
  .hp-manifesto-rift-copy > p:not(.hp-manifesto-rift-label) {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .hp-manifesto-rift-copy h3 {
    font-size: 1.35rem;
  }

  .hp-manifesto-values {
    grid-template-columns: 1fr;
  }

  .hp-manifesto-value,
  .hp-manifesto-value:nth-child(2n) {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--manifesto-line);
    padding-left: 1.75rem;
  }

  .hp-manifesto-value:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .hero,
  .home-brand-strip,
  .drop,
  .manifesto,
  .site-footer {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  h1 {
    font-size: clamp(3rem, 24vw, 7rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .tier-landing,
  .collections-page {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .home-brand-strip {
    display: grid;
    align-items: start;
  }

  .home-brand-strip strong {
    text-align: left;
  }

  .tier-filter {
    margin-left: calc(var(--space-3) * -1);
    margin-right: calc(var(--space-3) * -1);
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .detail-page {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .address-page,
  .checkout-shell {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .cart-card {
    width: min(100vw, 420px);
  }

  .cart-head,
  .cart-body,
  .cart-foot {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .cart-close {
    padding: 0.75rem 0.9rem;
  }

  .cart-qty-field {
    grid-template-columns: 1fr;
  }

  .cart-remove-btn,
  .cart-step-btn {
    width: 100%;
  }

  .detail-info {
    padding: 1.1rem;
  }

  .size-options {
    gap: 0.55rem;
  }

  .size-btn {
    min-width: 3rem;
    padding: 0.8rem 0.85rem;
  }

  .purchase-slip-upload-shell {
    grid-template-columns: 1fr;
  }

  .purchase-slip-file-trigger {
    width: 100%;
  }
}
