:root {
  --font-brand: "Montserrat", sans-serif;
  --bg: #040404;
  --bg-deep: #010101;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: rgba(255, 255, 255, 0.95);
  --text-soft: rgba(255, 255, 255, 0.64);
  --text-faint: rgba(255, 255, 255, 0.42);
  --accent: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --page-max: 1240px;
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--font-brand);
  font-weight: 500;
  letter-spacing: -0.015em;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 0 28%),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.055), transparent 0 26%),
    radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.045), transparent 0 30%),
    linear-gradient(180deg, #090909 0%, #030303 36%, #010101 100%);
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.48) 22%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.54) 68%, rgba(0, 0, 0, 0.94) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.7) 74%, rgba(0, 0, 0, 0.95) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='wave' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='white' stop-opacity='.18'/%3E%3Cstop offset='.46' stop-color='white' stop-opacity='.07'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='.015'/%3E%3C/linearGradient%3E%3ClinearGradient id='mist' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='white' stop-opacity='.02'/%3E%3Cstop offset='.5' stop-color='white' stop-opacity='.13'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='.02'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath stroke='url(%23wave)' stroke-width='2.8' d='M-160 188C73 126 238 279 457 224S861 95 1080 160s351 97 570 30'/%3E%3Cpath stroke='url(%23wave)' stroke-width='2.2' d='M-110 328C112 270 261 404 475 346s392-177 602-124 356 129 571 76 349-79 520-32'/%3E%3Cpath stroke='url(%23mist)' stroke-width='14' d='M-128 278C86 218 244 344 456 294s387-154 595-108 352 108 556 60 342-74 516-30'/%3E%3Cpath stroke='url(%23wave)' stroke-width='1.7' d='M-128 500C87 438 248 574 456 520s383-168 592-123 354 124 563 78 354-78 541-32'/%3E%3Cpath stroke='url(%23mist)' stroke-width='11' d='M-126 602C78 554 238 659 448 624s391-139 602-102 350 103 556 66 357-59 555-18'/%3E%3Cpath stroke='url(%23wave)' stroke-width='1.25' d='M-132 712C77 669 238 756 445 725s388-118 598-84 356 88 569 47 365-52 564-10'/%3E%3Cpath stroke='url(%23wave)' stroke-width='0.95' d='M-110 868C95 831 255 888 463 860s394-102 609-75 361 79 569 42 359-47 557-6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 1880px 100%;
  background-position: center, center, center 48%;
}

body::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.08;
  transform: translateX(-120%);
  animation: ambient-sheen 9s linear infinite;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.96);
  outline-offset: 4px;
}

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

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 32px), var(--page-max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.36));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header-inner {
  width: min(calc(100% - 32px), var(--page-max));
  margin: 0 auto;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand-mark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark img {
  width: 104px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-nav a,
.ghost-button,
.chip,
.pill,
.bag-link {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color var(--ease),
    border-color var(--ease),
    background var(--ease),
    transform var(--ease);
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.ghost-button:hover,
.chip:hover,
.chip.is-active,
.pill:hover,
.bag-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bag-link {
  gap: 10px;
}

.bag-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
}

.page-main {
  padding-bottom: 88px;
}

.page-main--minimal {
  padding-bottom: 0;
}

.eyebrow,
.section-label,
.meta-line,
.card-note,
.muted-copy,
.support-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  align-items: center;
  padding: 52px 0 84px;
}

.page-main--minimal .hero {
  min-height: auto;
  padding: 44px 0 18px;
}

.page-main--minimal .hero-clean {
  min-height: min(42vh, 440px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.82fr);
  gap: 42px;
  align-items: end;
}

.hero-grid--minimal {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.hero-clean {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(68vh, 680px);
  text-align: center;
}

.panel,
.service-strip,
.product-card,
.manifesto-card,
.footer-card,
.detail-panel,
.bag-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel,
.manifesto-card,
.footer-card,
.detail-panel,
.bag-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-panel,
.detail-panel,
.bag-panel {
  padding: clamp(28px, 4vw, 46px);
}

.hero-panel--minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(68vh, 680px);
}

.hero-panel::before,
.manifesto-card::before,
.product-media::before,
.detail-gallery-main::before,
.detail-gallery-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.14), transparent 0 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 36%, transparent 68%, rgba(255, 255, 255, 0.06));
  opacity: 0.8;
}

.hero-logo-wrap {
  width: min(100%, 460px);
  margin: 34px 0 28px;
}

.hero-panel--minimal .hero-logo-wrap {
  width: min(100%, 400px);
  margin: 0 0 32px;
}

.hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.08));
}

.display {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.lead {
  margin: 18px 0 0;
  max-width: 440px;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.button-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill {
  font-weight: 700;
}

.pill.is-primary {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
}

.pill[disabled],
.pill.is-primary[disabled] {
  opacity: 0.46;
  pointer-events: none;
}

.pill.is-primary:hover {
  transform: translateY(-1px);
}

.hero-clean .hero-logo-wrap {
  width: min(100%, 400px);
  margin: 0 0 32px;
}

.hero-follow {
  margin-top: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.home-news {
  padding: clamp(28px, 5vw, 72px) 0 clamp(70px, 8vw, 112px);
}

.home-news-head {
  width: min(100%, 920px);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.home-news-title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.home-news-grid {
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-news-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.home-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.home-news-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-news-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #050505;
}

.home-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.home-news-card:hover .home-news-media img {
  transform: scale(1.025);
}

.home-news-meta {
  min-height: 68px;
  padding: 14px 16px 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.home-news-code {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.home-news-meta h2 {
  min-width: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.service-strip {
  display: grid;
  gap: 1px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-row {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
}

.service-row strong,
.support-card strong,
.bag-summary-total strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section {
  padding-top: 40px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.section-copy {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.45;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.shop-count {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.product-grid--shop {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 24px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.product-card a {
  display: block;
  text-decoration: none;
}

.product-card-link {
  display: block;
  text-decoration: none;
}

.product-media-stack {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.product-tee-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16));
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.product-tee-image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-tee-image--hover {
  opacity: 1;
}

.product-card:hover .product-tee-image--base {
  opacity: 0;
  transform: scale(0.985);
}

.product-media {
  position: relative;
  aspect-ratio: 0.84;
  padding: 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-media--catalog {
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(232, 225, 216, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.08);
}

.theme-obsidian {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.15), transparent 0 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(255, 255, 255, 0.03)),
    #0c0c0c;
}

.theme-steel {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.16), transparent 0 22%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 44%, rgba(255, 255, 255, 0.05)),
    #111214;
}

.theme-ash {
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.14), transparent 0 20%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), transparent 40%, rgba(255, 255, 255, 0.03)),
    #0f1011;
}

.theme-graphite {
  background:
    radial-gradient(circle at 34% 16%, rgba(255, 255, 255, 0.14), transparent 0 22%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), transparent 40%, rgba(255, 255, 255, 0.04)),
    #101010;
}

.product-media-inner,
.detail-gallery-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-code,
.detail-code {
  margin: 0;
  font-size: clamp(3rem, 4vw, 4.4rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.product-ghost,
.detail-word {
  max-width: 70%;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-meta {
  display: grid;
  gap: 14px;
  padding: 18px 18px 20px;
}

.product-card--shop {
  border-radius: 0;
  overflow: visible;
}

.product-card--shop:hover {
  transform: translateY(-2px);
}

.product-media--shop {
  aspect-ratio: 0.78;
  padding: 20px;
  border: 0;
  border-radius: 12px;
}

.product-media-inner--shop {
  align-items: flex-start;
  justify-content: flex-start;
}

.product-code--shop {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-meta--shop {
  gap: 0;
  padding: 14px 4px 0;
}

.product-title-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.product-title-line h3 {
  min-width: 0;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-title-line .price {
  justify-self: end;
  white-space: nowrap;
}

.product-topline,
.bag-line,
.bag-summary-line,
.detail-topline,
.related-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.product-topline h3,
.detail-title,
.bag-item-title {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.product-topline p,
.detail-subtitle,
.bag-item-meta {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.price,
.detail-price {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.empty-state,
.search-empty {
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  color: var(--text-soft);
}

.manifesto-card {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.manifesto-card h2 {
  margin: 16px 0 0;
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.manifesto-card p {
  margin: 14px 0 0;
  max-width: 430px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.manifesto-list,
.support-grid {
  display: grid;
  gap: 14px;
}

.manifesto-item,
.support-card {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.footer-band {
  padding: 40px 0 42px;
}

.footer-card {
  padding: 26px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 20px;
  align-items: center;
}

.footer-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-legal {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.82rem;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text-faint);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--ease);
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--text-main);
}

.legal-page .page-hero {
  padding-bottom: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.legal-panel {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.legal-panel h2,
.legal-panel h3 {
  margin: 0;
  text-transform: uppercase;
}

.legal-panel h2 {
  font-size: 1.35rem;
}

.legal-panel h3 {
  margin-top: 22px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.legal-panel p {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.cookie-table {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.cookie-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1.5fr);
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.86rem;
}

.cookie-table strong {
  color: var(--text-main);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(calc(100% - 36px), 620px);
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.cookie-copy {
  display: grid;
  gap: 8px;
}

.cookie-copy h2,
.cookie-copy p {
  margin: 0;
}

.cookie-copy h2 {
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-copy p,
.cookie-copy a {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.cookie-copy a {
  width: fit-content;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cookie-kicker {
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cookie-toggle {
  min-height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--text-main);
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 72px 0 30px;
}

.page-hero .display {
  max-width: 760px;
}

.page-hero .lead {
  max-width: 520px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 26px;
}

.detail-gallery {
  display: grid;
  gap: 16px;
}

.detail-gallery-main,
.detail-gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-gallery-main {
  min-height: 520px;
  padding: 24px;
}

.detail-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-gallery-thumb {
  min-height: 180px;
  padding: 18px;
}

.detail-gallery-main--product,
.detail-gallery-thumb--switch {
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(232, 225, 216, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.05),
    0 14px 26px rgba(0, 0, 0, 0.08);
}

.detail-gallery-main--product::before,
.detail-gallery-thumb--switch::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.5), transparent 0 22%);
}

.detail-gallery-main--product {
  display: grid;
  place-items: center;
}

.detail-product-image,
.detail-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.16));
}

.detail-gallery-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.detail-gallery-badge .detail-code {
  color: #0d0d0d;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
}

.detail-gallery-badge .detail-word {
  max-width: none;
  color: rgba(16, 16, 16, 0.52);
}

.detail-gallery-thumb--switch {
  width: 100%;
  padding: 12px;
  display: grid;
  gap: 10px;
  align-content: space-between;
  text-align: left;
  border-color: rgba(0, 0, 0, 0.08);
}

.detail-gallery-thumb--switch.is-active {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 10px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.detail-thumb-label {
  position: relative;
  z-index: 1;
  color: rgba(16, 16, 16, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.detail-topline {
  align-items: end;
}

.detail-title {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.detail-price {
  font-size: 1.3rem;
}

.detail-block {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-block p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.45;
}

.availability-copy,
.purchase-note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.45;
}

.purchase-note {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-row,
.detail-list,
.qty-control,
.bag-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qty-control,
.bag-actions {
  align-items: center;
}

.qty-control span,
.bag-actions span {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
}

.size-button,
.qty-button,
.color-button {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.size-button.is-active,
.qty-button:hover,
.size-button:hover,
.color-button.is-active,
.color-button:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.detail-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row .pill {
  flex: 1 1 220px;
}

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

.bag-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 24px;
}

.bag-items {
  display: grid;
  gap: 14px;
}

.bag-item {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.bag-item-meta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bag-summary {
  display: grid;
  gap: 18px;
}

.bag-summary-total {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.bag-summary-total p {
  margin: 0;
}

.bag-summary-value {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.bag-cta {
  width: 100%;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.utility-space {
  margin-top: 24px;
}

@keyframes ambient-sheen {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .manifesto-card,
  .detail-layout,
  .bag-layout,
  .related-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-legal {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body::before {
    background-size: auto, auto, 1320px 100%;
    background-position: center, center, center 56%;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .site-header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
    gap: 10px;
    padding: 12px 0;
  }

  .brand-mark {
    justify-self: start;
  }

  .brand-mark img {
    width: 84px;
  }

  .site-nav {
    display: flex;
    width: auto;
    max-width: 100%;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.7rem;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }

  .container {
    width: min(calc(100% - 24px), var(--page-max));
  }

  .page-main {
    padding-bottom: 72px;
  }

  .page-main--minimal {
    padding-bottom: 0;
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 12px 0 30px;
  }

  .page-main--minimal .hero {
    min-height: auto;
    padding: 18px 0 8px;
  }

  .page-main--minimal .hero-clean {
    min-height: min(36svh, 360px);
  }

  .hero-panel,
  .detail-panel,
  .bag-panel {
    padding: 20px 16px;
  }

  .hero-logo-wrap {
    width: min(100%, 280px);
    margin: 14px 0 16px;
  }

  .hero-panel--minimal {
    min-height: min(54svh, 460px);
  }

  .hero-clean {
    min-height: min(54svh, 460px);
  }

  .hero-clean .hero-logo-wrap {
    width: min(100%, 250px);
    margin: 0 0 20px;
  }

  .hero-follow {
    margin-top: 20px;
    gap: 10px;
  }

  .home-news {
    padding: 12px 0 54px;
  }

  .home-news-head {
    margin-bottom: 12px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-news-title {
    font-size: clamp(1.9rem, 12vw, 3rem);
  }

  .home-news-grid {
    gap: 10px;
  }

  .home-news-card {
    border-radius: 10px;
  }

  .home-news-meta {
    min-height: 78px;
    padding: 10px 10px 12px;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .home-news-meta h2,
  .home-news-meta .price {
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .home-news-code {
    font-size: 0.68rem;
  }

  .page-hero {
    padding: 28px 0 10px;
  }

  .page-hero .display {
    font-size: clamp(1.95rem, 10vw, 2.9rem);
    line-height: 0.92;
  }

  .page-hero .lead {
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    margin-bottom: 16px;
    scrollbar-width: none;
  }

  .chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .product-grid--shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
  }

  .product-media--shop {
    aspect-ratio: 0.76;
    padding: 12px;
    border-radius: 10px;
  }

  .product-code--shop {
    display: none;
  }

  .product-meta--shop {
    gap: 4px;
    padding: 12px 0 0;
  }

  .product-title-line {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .product-title-line h3 {
    font-size: 0.86rem;
    line-height: 1.12;
  }

  .price {
    font-size: 0.86rem;
  }

  .detail-layout {
    gap: 18px;
  }

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

  .detail-gallery {
    gap: 12px;
  }

  .detail-gallery-main {
    min-height: min(48svh, 340px);
    padding: 14px;
    border-radius: 20px;
  }

  .detail-gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .detail-gallery-thumb {
    min-height: 110px;
    padding: 10px;
    border-radius: 18px;
  }

  .detail-gallery-badge {
    left: 14px;
    bottom: 14px;
  }

  .detail-gallery-badge .detail-code {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .detail-thumb-label {
    font-size: 0.7rem;
  }

  .detail-copy {
    gap: 14px;
  }

  .detail-topline {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .detail-title {
    font-size: clamp(1.5rem, 7.8vw, 2rem);
  }

  .detail-subtitle,
  .bag-item-meta {
    font-size: 0.8rem;
  }

  .detail-price {
    font-size: 1rem;
  }

  .detail-block {
    gap: 10px;
    padding-top: 12px;
  }

  .detail-block p,
  .availability-copy {
    font-size: 0.92rem;
  }

  #color-row,
  #size-row {
    display: grid;
    gap: 8px;
  }

  #color-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #size-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  #color-row .color-button,
  #size-row .size-button {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
  }

  .size-button,
  .qty-button,
  .color-button {
    min-width: 40px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .detail-list {
    gap: 8px;
  }

  .detail-chip {
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .cta-row .pill {
    flex: 1 1 100%;
    min-height: 44px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-card {
    padding: 16px;
  }

  .bag-layout {
    gap: 16px;
  }

  .bag-item {
    padding: 16px;
  }

  .bag-line {
    flex-direction: column;
    gap: 10px;
  }

  .bag-summary {
    gap: 12px;
  }

  .bag-summary-total {
    padding: 16px;
  }

  .bag-summary-value {
    font-size: 1.45rem;
  }

  .bag-actions {
    gap: 8px;
  }

  .bag-actions .ghost-button {
    flex: 1 1 100%;
    min-height: 40px;
  }

  .footer-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .footer-band {
    padding: 24px 0 26px;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-legal {
    font-size: 0.74rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
  }

  .legal-panel {
    padding: 18px 16px;
  }

  .cookie-table > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .cookie-settings {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .pill {
    flex: 1 1 100%;
  }

  .button-row {
    width: 100%;
  }

  .button-row .pill {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 18px), var(--page-max));
  }

  .display,
  .page-hero .display {
    font-size: 1.78rem;
  }

  .section-title,
  .detail-title {
    font-size: 1.55rem;
  }

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

  .product-grid--shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .site-header-inner {
    gap: 8px;
  }

  .brand-mark img {
    width: 78px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a,
  .chip,
  .pill {
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .hero-clean .hero-logo-wrap {
    width: min(100%, 220px);
  }

  .product-media--shop {
    padding: 10px;
  }

  .product-title-line {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .product-title-line h3,
  body.shop-page .product-title-line h3 {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }

  .price {
    font-size: 0.8rem;
  }

  .detail-gallery-main {
    min-height: min(44svh, 280px);
  }

  .detail-gallery-thumb {
    min-height: 94px;
  }

  #size-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bag-item {
    padding: 14px;
  }

  .bag-summary-value {
    font-size: 1.35rem;
  }

  .footer-title {
    font-size: 0.96rem;
  }
}

@media (max-width: 380px) {
  .site-nav a {
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .product-grid--shop {
    gap: 16px 8px;
  }

  .product-media--shop {
    padding: 8px;
  }

  .product-title-line h3,
  body.shop-page .product-title-line h3 {
    font-size: 0.74rem;
  }

  .price {
    font-size: 0.76rem;
  }

  .detail-title {
    font-size: 1.42rem;
  }

  .detail-gallery-thumb {
    min-height: 86px;
  }
}

.admin-login-panel {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 48px 0 96px;
}

.admin-login-panel[hidden],
.admin-app[hidden] {
  display: none;
}

.admin-login-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 34px;
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.admin-login-fields {
  width: 100%;
  display: grid;
  gap: 16px;
}

.admin-login-card .admin-field {
  justify-items: center;
}

.admin-login-card .admin-field input {
  text-align: center;
}

.admin-login-card .pill {
  width: fit-content;
}

.admin-app > .section {
  padding-top: 56px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-sidebar,
.admin-editor {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.admin-sidebar {
  position: sticky;
  top: 96px;
  padding: 24px 0 6px;
}

.admin-editor {
  padding: 24px;
}

.admin-sidebar-head,
.admin-editor-head {
  padding: 0 24px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-sidebar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-panel-title {
  margin: 6px 0 0;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.admin-editor-meta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-product-list {
  display: grid;
}

.admin-product-row {
  width: 100%;
  padding: 16px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--ease),
    border-color var(--ease),
    transform var(--ease);
}

.admin-product-row:hover,
.admin-product-row.is-active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.admin-product-row h3,
.admin-product-code {
  margin: 0;
}

.admin-product-code {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-product-row h3 {
  margin-top: 6px;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.admin-product-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.admin-product-meta strong {
  font-size: 0.86rem;
}

.admin-product-badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-grid {
  display: grid;
  gap: 16px;
}

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

.admin-field,
.admin-sizes {
  display: grid;
  gap: 8px;
}

.admin-field span,
.admin-sizes legend {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.94);
  transition:
    border-color var(--ease),
    background var(--ease);
}

.admin-field input,
.admin-field select {
  min-height: 54px;
  padding: 0 16px;
}

.admin-field textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.admin-field input::placeholder,
.admin-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.admin-sizes {
  margin: 0;
  padding: 0;
  border: 0;
}

.admin-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-size-grid label {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-size-grid input {
  accent-color: #ffffff;
}

.admin-upload-card {
  padding: 18px;
  display: grid;
  gap: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-upload-preview-wrap {
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 0 34%),
    rgba(255, 255, 255, 0.02);
}

.admin-upload-preview {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

.admin-file-button {
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.admin-file-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-delete-button[disabled] {
  opacity: 0.44;
  pointer-events: none;
}

.admin-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.admin-status[data-tone="success"] {
  color: #c8ffdd;
}

.admin-status[data-tone="error"] {
  color: #ffd0d0;
}

@media (max-width: 1100px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .admin-sidebar,
  .admin-editor {
    border-radius: 24px;
  }

  .admin-sidebar-head,
  .admin-editor-head,
  .admin-editor {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .admin-upload-preview-wrap {
    min-height: 200px;
  }

  .admin-product-row {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 520px) {
  .admin-sidebar-actions,
  .admin-actions {
    width: 100%;
  }

  .admin-sidebar-actions .pill,
  .admin-actions .pill {
    width: 100%;
  }

  .admin-product-row {
    flex-direction: column;
  }

  .admin-product-meta {
    width: 100%;
    justify-items: start;
  }
}

body.shop-page {
  --text: rgba(18, 18, 18, 0.96);
  --text-soft: rgba(18, 18, 18, 0.62);
  --text-faint: rgba(18, 18, 18, 0.44);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 0, 0, 0.035), transparent 0 21%),
    radial-gradient(circle at 84% 16%, rgba(0, 0, 0, 0.028), transparent 0 24%),
    radial-gradient(circle at 50% 120%, rgba(0, 0, 0, 0.045), transparent 0 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f2ec 100%);
}

body.shop-page::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.68) 24%, rgba(255, 255, 255, 0.34) 46%, rgba(255, 255, 255, 0.76) 74%, rgba(255, 255, 255, 0.94) 100%),
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.03), transparent 0 26%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.026), transparent 0 28%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='wave' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23000000' stop-opacity='.10'/%3E%3Cstop offset='.46' stop-color='%23000000' stop-opacity='.045'/%3E%3Cstop offset='1' stop-color='%23000000' stop-opacity='.012'/%3E%3C/linearGradient%3E%3ClinearGradient id='mist' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23000000' stop-opacity='.012'/%3E%3Cstop offset='.5' stop-color='%23000000' stop-opacity='.045'/%3E%3Cstop offset='1' stop-color='%23000000' stop-opacity='.012'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath stroke='url(%23wave)' stroke-width='2.8' d='M-160 188C73 126 238 279 457 224S861 95 1080 160s351 97 570 30'/%3E%3Cpath stroke='url(%23wave)' stroke-width='2.2' d='M-110 328C112 270 261 404 475 346s392-177 602-124 356 129 571 76 349-79 520-32'/%3E%3Cpath stroke='url(%23mist)' stroke-width='14' d='M-128 278C86 218 244 344 456 294s387-154 595-108 352 108 556 60 342-74 516-30'/%3E%3Cpath stroke='url(%23wave)' stroke-width='1.7' d='M-128 500C87 438 248 574 456 520s383-168 592-123 354 124 563 78 354-78 541-32'/%3E%3Cpath stroke='url(%23mist)' stroke-width='11' d='M-126 602C78 554 238 659 448 624s391-139 602-102 350 103 556 66 357-59 555-18'/%3E%3Cpath stroke='url(%23wave)' stroke-width='1.25' d='M-132 712C77 669 238 756 445 725s388-118 598-84 356 88 569 47 365-52 564-10'/%3E%3Cpath stroke='url(%23wave)' stroke-width='0.95' d='M-110 868C95 831 255 888 463 860s394-102 609-75 361 79 569 42 359-47 557-6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, auto, 1840px 100%;
  background-position: center, center, center, center 42%;
}

body.shop-page::after {
  opacity: 0.03;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

body.shop-page .site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.shop-page .brand-mark img {
  filter: invert(1);
}

body.shop-page .site-nav a,
body.shop-page .ghost-button,
body.shop-page .chip,
body.shop-page .pill,
body.shop-page .bag-link {
  color: rgba(12, 12, 12, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

body.shop-page .site-nav a[aria-current="page"],
body.shop-page .site-nav a:hover,
body.shop-page .ghost-button:hover,
body.shop-page .chip:hover,
body.shop-page .chip.is-active,
body.shop-page .pill:hover,
body.shop-page .bag-link:hover {
  color: #050505;
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.05);
}

body.shop-page .bag-count {
  background: rgba(0, 0, 0, 0.08);
}

body.shop-page .page-hero {
  padding: 62px 0 14px;
}

body.shop-page .page-hero .display {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  letter-spacing: -0.075em;
}

body.shop-page .page-hero .lead {
  max-width: 460px;
}

@media (max-width: 760px) {
  body.shop-page::before {
    background-size: auto, auto, auto, 1320px 100%;
    background-position: center, center, center, center 48%;
  }

  body.shop-page .page-hero {
    padding: 24px 0 8px;
  }

  body.shop-page .page-hero .display {
    font-size: clamp(1.9rem, 11vw, 2.6rem);
  }

  body.shop-page .site-header {
    background: rgba(255, 255, 255, 0.84);
  }
}

body.shop-page .product-card {
  background: transparent;
  box-shadow: none;
}

body.shop-page .product-card:hover {
  transform: translateY(-3px);
}

body.shop-page .product-media {
  border-bottom: 0;
}

body.shop-page .product-media::before {
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.82), transparent 0 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), transparent 34%, rgba(255, 255, 255, 0.18));
}

body.shop-page .product-card--shop .product-card-link {
  display: block;
}

body.shop-page .product-media--shop {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.18)),
    rgba(241, 237, 232, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.05),
    0 10px 22px rgba(0, 0, 0, 0.035);
}

body.shop-page .theme-obsidian {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.9), transparent 0 24%),
    linear-gradient(145deg, #f8f6f3, #ece8e2 56%, #f5f2ed);
}

body.shop-page .theme-steel {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.92), transparent 0 22%),
    linear-gradient(160deg, #f5f3ef, #e9e4de 52%, #f7f4ef);
}

body.shop-page .theme-ash {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.88), transparent 0 20%),
    linear-gradient(155deg, #f7f4ef, #ece6de 54%, #f4efe7);
}

body.shop-page .theme-graphite {
  background:
    radial-gradient(circle at 30% 16%, rgba(255, 255, 255, 0.88), transparent 0 22%),
    linear-gradient(155deg, #f6f4ef, #eae6de 50%, #f5f1ea);
}

body.shop-page .product-code,
body.shop-page .product-topline h3,
body.shop-page .product-title-line h3,
body.shop-page .price,
body.shop-page .section-title,
body.shop-page .footer-title {
  color: #0a0a0a;
}

body.shop-page .product-code--shop {
  color: rgba(10, 10, 10, 0.44);
}

body.shop-page .product-meta--shop {
  padding-top: 16px;
}

body.shop-page .product-title-line h3 {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


body.shop-page .footer-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

body.shop-page .footer-links a,
body.shop-page .footer-links button {
  color: rgba(10, 10, 10, 0.54);
}

body.shop-page .footer-links a:hover,
body.shop-page .footer-links button:hover {
  color: #0a0a0a;
}

body.shop-page .social-link {
  color: #0a0a0a;
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(0, 0, 0, 0.05);
}

body.shop-page .social-link:hover {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
