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

:root {
  --bg:      #0d0c0b;
  --surface: #111110;
  --rust:    #8b3a1a;
  --rust-lt: #a84820;
  --sand:    #c4a882;
  --text:    #ddd8cf;
  --muted:   #6a6358;
  --border:  rgba(196,168,130,.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.085'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  background: rgba(10,8,6,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,58,26,.22);
  z-index: 50;
}

.nav-logo { display: flex; align-items: baseline; gap: 8px; }
.logo-cn { font-family: 'Noto Serif SC', serif; font-size: 22px; color: var(--rust); }
.logo-en { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .15em; }

.cart-btn { font-size: 13px; color: var(--muted); letter-spacing: .05em; transition: color .2s; }
.cart-btn:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  padding: 90px 40px 80px;
  border-bottom: 1px solid rgba(139,58,26,.2);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 90% at 85% 50%, rgba(139,58,26,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(80,30,8,.2) 0%, transparent 60%),
    var(--bg);
}
.hero::after {
  content: '仓';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(260px, 38vw, 480px);
  color: var(--rust);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-inner { max-width: 640px; position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--rust);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(139,58,26,.45);
  padding: 5px 12px 5px 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--rust);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 11vw, 150px);
  line-height: .92;
  letter-spacing: .01em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--rust);
  color: transparent;
}

.hero-body {
  color: var(--muted);
  font-size: 15px;
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
  padding: 11px 28px;
  background: var(--rust);
  color: var(--text);
  transition: background .2s;
}
.hero-cta:hover { background: var(--rust-lt); }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--rust);
  padding: 10px 0;
}
.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.85);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SHOP ── */
.shop { padding: 56px 40px 80px; }

.shop-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 36px;
  padding-bottom: 16px;
  padding-left: 14px;
  border-bottom: 1px solid rgba(139,58,26,.2);
  border-left: 3px solid var(--rust);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product { display: flex; flex-direction: column; gap: 10px; }

.product {
  border-bottom: 2px solid transparent;
  transition: border-color .3s;
  padding-bottom: 2px;
}
.product:hover { border-color: var(--rust); }

.product-img {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: opacity .2s;
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.55));
  pointer-events: none;
  z-index: 1;
}
.product:hover .product-img { opacity: .92; }
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.product:hover .product-img img { transform: scale(1.03); }

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(139,58,26,.18);
}

.product-name { font-size: 13px; letter-spacing: .02em; }
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  color: var(--sand);
  white-space: nowrap;
}

.card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-size-btn {
  font-size: 11px;
  letter-spacing: .05em;
  padding: 4px 9px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: color .15s, border-color .15s, background .15s;
  line-height: 1.4;
}
.card-size-btn:hover { color: var(--text); border-color: var(--muted); }
.card-size-btn.active {
  color: var(--text);
  border-color: var(--rust);
  background: rgba(139,58,26,.15);
}

.add-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(139,58,26,.3);
  padding: 9px 0;
  width: 100%;
  text-align: center;
  transition: color .2s, border-color .2s, background .2s;
}
.add-btn:hover {
  color: var(--text);
  border-color: var(--rust);
  background: rgba(139,58,26,.1);
}

/* ── GARMENT SILHOUETTES ── */
.g { opacity: .2; }

.g-jacket {
  width: 110px; height: 130px;
  background: linear-gradient(150deg, var(--sand), var(--rust));
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 100%, 0% 100%, 0% 15%);
}
.g-tee {
  width: 100px; height: 110px;
  background: #666;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 85% 20%, 85% 100%, 15% 100%, 15% 20%, 0% 20%);
}
.g-hoodie {
  width: 110px; height: 130px;
  background: #4a3820;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 85% 20%, 85% 100%, 15% 100%, 15% 20%, 0% 20%);
}
.g-longsleeve {
  width: 100px; height: 120px;
  background: #3a2c1e;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 55%, 82% 55%, 82% 100%, 18% 100%, 18% 55%, 0% 55%, 0% 25%);
}
.g-pants {
  width: 90px; height: 140px;
  background: #2a2a2a;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 65% 50%, 65% 100%, 55% 100%, 50% 55%, 45% 100%, 35% 100%, 35% 50%, 0% 50%);
}
.g-shirt {
  width: 110px; height: 130px;
  background: #3a3830;
  clip-path: polygon(25% 0%, 75% 0%, 100% 22%, 85% 22%, 85% 100%, 15% 100%, 15% 22%, 0% 22%);
  position: relative;
}
.g-shirt::before {
  content: '';
  position: absolute;
  top: 0; left: 44%; width: 12%; height: 22%;
  background: rgba(0,0,0,.35);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.g-shirt::after {
  content: '';
  position: absolute;
  top: 22%; left: 49%; width: 2%; height: 78%;
  background: rgba(0,0,0,.2);
}
.g-vest {
  width: 100px; height: 120px;
  background: #3a2010;
  clip-path: polygon(25% 0%, 75% 0%, 100% 15%, 100% 100%, 0% 100%, 0% 15%);
}
.g-coat {
  width: 120px; height: 180px;
  background: #2a1e0e;
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 100%, 0% 100%, 0% 15%);
}

/* ── FOOTER ── (see FOOTER LEGAL LINKS section below) */

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 340px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-head button { font-size: 14px; color: var(--muted); transition: color .2s; }
.cart-head button:hover { color: var(--text); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { color: var(--muted); font-size: 13px; margin-top: 24px; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  font-size: 13px;
}
.cart-item-name { flex: 1; }
.cart-item-price { color: var(--sand); white-space: nowrap; }
.cart-item-remove { color: var(--muted); font-size: 11px; transition: color .2s; padding: 2px 4px; }
.cart-item-remove:hover { color: var(--rust); }

.cart-foot {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: 13px;
}
.cart-total span:first-child { color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.cart-total span:last-child { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--sand); }

.checkout-btn {
  width: 100%;
  background: var(--rust);
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .1em;
  padding: 13px;
  transition: background .2s;
}
.checkout-btn:hover { background: var(--rust-lt); }
.cart-delivery {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.cart-delivery a { color: var(--muted); text-decoration: underline; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: .06em;
  padding: 10px 22px;
  z-index: 200;
  transition: transform .25s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── PRODUCT PAGE ── */
.product-img-link { display: block; }
.product-name { color: var(--text); font-size: 13px; letter-spacing: .02em; transition: color .2s; }
.product-name:hover { color: var(--sand); }

.pd-back {
  padding: 28px 40px 0;
}
.pd-back a {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.pd-back a:hover { color: var(--text); }

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 130px);
}

.pd-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: sticky;
  top: 61px;
  align-self: start;
  height: calc(100vh - 61px);
  overflow: hidden;
}
.pd-image img {
  max-width: 540px;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.g-large { transform: scale(2.2); opacity: .25; }

.pd-details {
  padding: 48px 56px 80px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pd-category {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}

.pd-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 16px;
}

.pd-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--sand);
  margin-bottom: 28px;
}

.pd-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}

.pd-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.size-btn {
  font-size: 12px;
  letter-spacing: .06em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s;
  background: transparent;
}
.size-btn:hover { color: var(--text); border-color: var(--muted); }
.size-btn.active { color: var(--text); border-color: var(--rust); background: rgba(139,58,26,.15); }

.pd-add-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .1em;
  background: var(--rust);
  color: var(--text);
  padding: 14px 0;
  width: 100%;
  max-width: 420px;
  transition: background .2s;
  margin-bottom: 36px;
}
.pd-add-btn:hover { background: var(--rust-lt); }

.pd-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  max-width: 420px;
}
.pd-details-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.pd-details-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--rust);
}

@media (max-width: 860px) {
  .pd-layout { grid-template-columns: 1fr; }
  .pd-image { position: relative; top: 0; height: 380px; }
  .pd-details { padding: 36px 24px 60px; border-left: none; border-top: 1px solid var(--border); }
  .pd-back { padding: 24px 24px 0; }
}

/* ── FOOTER LEGAL LINKS ── */
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 16px;
  padding: 28px 40px;
  background: #0a0806;
  border-top: 2px solid rgba(139,58,26,.3);
  font-size: 12px;
  color: var(--muted);
}
.footer-left { display: flex; align-items: baseline; gap: 7px; }
.footer-left .logo-cn { font-size: 18px; }
.footer-left .logo-en { font-size: 16px; }
.footer-left a { display: flex; align-items: baseline; gap: 7px; }
.footer-right { text-align: right; align-self: center; }
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.footer-legal a {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--text); }

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 48px 40px 80px;
  min-height: calc(100vh - 200px);
}
.legal-inner {
  max-width: 680px;
}
.legal-inner--narrow {
  max-width: 480px;
}
.legal-back {
  margin-bottom: 32px;
}
.legal-back a {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.legal-back a:hover { color: var(--text); }

.legal-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 6px;
}
.legal-updated {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 48px;
  letter-spacing: .04em;
}
.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .06em;
  margin-bottom: 14px;
  color: var(--sand);
}
.legal-section p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--sand); text-decoration: underline; text-underline-offset: 3px; }
.legal-section strong { color: var(--text); font-weight: 500; }
.legal-section ul {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section ul li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.legal-section ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--rust);
}

/* Cookie table */
.cookie-table {
  border: 1px solid var(--border);
  margin: 16px 0;
}
.cookie-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr 1.2fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.cookie-row:last-child { border-bottom: none; }
.cookie-row span {
  font-size: 12px;
  color: var(--muted);
  padding: 10px 14px;
  line-height: 1.5;
  border-right: 1px solid var(--border);
}
.cookie-row span:last-child { border-right: none; }
.cookie-row--header span {
  color: var(--text);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(196,168,130,.05);
}

/* ── SHIPPING TABLE ── */
.shipping-table {
  border: 1px solid var(--border);
  margin: 14px 0;
}
.st-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.st-row:last-child { border-bottom: none; }
.st-row span {
  font-size: 13px;
  color: var(--muted);
  padding: 11px 16px;
  border-right: 1px solid var(--border);
  line-height: 1.5;
}
.st-row span:last-child { border-right: none; }
.st-row--header span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text);
  background: rgba(196,168,130,.05);
}

/* ── SIZE CHART ── */
.pd-size-chart {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 420px;
}
.pd-size-note {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .03em;
  margin-bottom: 14px;
  line-height: 1.5;
}
.sc-wrap { overflow-x: auto; }
.sc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.sc-table thead tr { border-bottom: 1px solid var(--rust); }
.sc-table th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
  text-align: left;
  padding: 0 16px 10px 0;
  white-space: nowrap;
}
.sc-table th:last-child { padding-right: 0; }
.sc-table td {
  padding: 10px 16px 10px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.sc-table td:last-child { padding-right: 0; }
.sc-table tbody tr:last-child td { border-bottom: none; }
.sc-table tbody tr:hover td { color: var(--text); }
.sc-table td.sc-size {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--text);
}

/* ── 404 ── */
.fourofour-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 20vw, 180px);
  color: var(--rust);
  line-height: 1;
  opacity: 0.6;
}

/* ── STATUS PAGES (success / cancel) ── */
.status-page {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.status-inner {
  text-align: center;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.status-icon {
  font-size: 48px;
  color: var(--rust);
  line-height: 1;
}
.status-icon--cancel { color: var(--muted); }
.status-inner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: .03em;
  line-height: 1;
}
.status-inner p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── ABOUT PAGE ── */
.about-layout {
  display: flex;
  gap: 64px;
  max-width: 1080px;
  align-items: flex-start;
}
.about-content { flex: 1; max-width: 640px; }
.about-aside {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  background: #18120d;
  border: 1px solid rgba(139,58,26,.35);
  overflow: hidden;
}
.about-aside-header {
  background: var(--rust);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-aside-header .aside-cn {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}
.about-aside-header .aside-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.8);
}
.about-aside-body {
  padding: 28px 20px 24px;
  position: relative;
  overflow: hidden;
}
.about-aside-body::before {
  content: '仓';
  position: absolute;
  font-family: 'Noto Serif SC', serif;
  font-size: 170px;
  color: var(--rust);
  opacity: 0.09;
  right: -14px;
  bottom: -24px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-aside-lines { list-style: none; }
.about-aside-lines li {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .1em;
  color: var(--sand);
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid rgba(139,58,26,.2);
  position: relative;
}
.about-aside-lines li:last-child { border-bottom: none; }
.about-aside-lines li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--rust);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #141210;
  border-top: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9998;
  font-size: 13px;
  color: var(--muted);
}
.cookie-banner a { color: var(--sand); text-decoration: underline; }
.cookie-banner button {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  padding: 8px 22px;
  background: var(--rust);
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.cookie-banner button:hover { background: var(--rust-lt); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .about-aside { display: none; }
}
@media (max-width: 640px) {
  .nav, .hero, .shop, .footer, .legal-page { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 60px; padding-bottom: 56px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cart-drawer { width: 100%; }
  .footer { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .cookie-row { grid-template-columns: 1fr 2fr; }
  .cookie-row span:nth-child(3),
  .cookie-row span:nth-child(4) { display: none; }
}
