:root {
  --ink: #080808;
  --ink-soft: #0f0e0e;
  --panel: rgba(21, 18, 17, 0.82);
  --panel-solid: #151211;
  --paper: #f7e9c8;
  --muted: #baa98c;
  --red: #d83a2e;
  --red-bright: #f04c3b;
  --gold: #d7a94c;
  --gold-pale: #f1d78f;
  --line: rgba(215, 169, 76, 0.22);
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(125, 25, 18, 0.12), transparent 31%),
    radial-gradient(circle at 86% 66%, rgba(197, 135, 47, 0.07), transparent 32%),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body.cart-open { overflow: hidden; }
body::before {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
button:not(:disabled), a { cursor: pointer; }
button:disabled { cursor: not-allowed; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 169, 76, 0.14);
  background: rgba(8, 8, 8, 0.76);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease;
}
.site-header.scrolled { border-color: rgba(215, 169, 76, 0.24); background: rgba(8, 8, 8, 0.93); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.02em; }
.brand img { border-radius: 50%; filter: drop-shadow(0 0 12px rgba(215, 169, 76, 0.22)); }
.brand > span span { color: var(--red-bright); }
.brand > small { padding: 3px 7px; border: 1px solid rgba(215, 169, 76, 0.28); border-radius: 999px; color: var(--gold-pale); font-family: var(--sans); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a { color: #d9cdb8; font-size: 0.88rem; font-weight: 650; transition: color 180ms ease; }
.nav-links > a:hover, .nav-links > a:focus-visible { color: #fff3d4; }
.account-button, .cart-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(215, 169, 76, 0.06);
  color: #eaddc4;
  font-size: 0.82rem;
  font-weight: 750;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.account-button:hover, .cart-button:hover { border-color: rgba(215, 169, 76, 0.55); background: rgba(215, 169, 76, 0.12); transform: translateY(-1px); }
.account-dot { width: 7px; height: 7px; border-radius: 50%; background: #897f6c; box-shadow: 0 0 0 4px rgba(137, 127, 108, 0.1); }
.account-button.is-authenticated .account-dot { background: #71d287; box-shadow: 0 0 0 4px rgba(113, 210, 135, 0.12); }
.cart-button { border-color: rgba(216, 58, 46, 0.38); background: rgba(216, 58, 46, 0.08); }
.cart-button svg { width: 17px; }
.cart-count { min-width: 21px; height: 21px; display: grid; place-items: center; border-radius: 999px; background: var(--red); color: white; font-size: 0.68rem; }
.menu-toggle { display: none; }

.store-hero { position: relative; min-height: 690px; display: grid; align-items: center; padding: 134px 0 74px; isolation: isolate; overflow: hidden; }
.store-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.99) 0%, rgba(8, 8, 8, 0.92) 42%, rgba(8, 8, 8, 0.72) 100%),
    url("assets/share.png") center / cover no-repeat;
  opacity: 0.47;
  filter: saturate(0.78);
}
.store-hero::after { position: absolute; inset: auto 0 0; z-index: -2; height: 180px; content: ""; background: linear-gradient(transparent, var(--ink)); }
.hero-glow { position: absolute; z-index: -1; width: 540px; aspect-ratio: 1; border-radius: 50%; filter: blur(90px); opacity: 0.12; }
.hero-glow.glow-red { left: -310px; top: 10%; background: var(--red); }
.hero-glow.glow-gold { right: -360px; bottom: -80px; background: var(--gold); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr); align-items: center; gap: clamp(46px, 8vw, 110px); }
.eyebrow, .kicker { color: var(--gold); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 1px; background: var(--gold); }
.hero-copy h1 { max-width: 720px; margin: 18px 0 20px; font-family: var(--serif); font-size: clamp(3rem, 6.3vw, 5.6rem); line-height: 0.96; letter-spacing: -0.045em; }
.hero-copy h1 em { color: var(--red-bright); font-weight: 500; }
.hero-copy > p { max-width: 620px; margin: 0; color: #cabda6; font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 20px; border: 1px solid transparent; border-radius: 9px; font-size: 0.86rem; font-weight: 800; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; }
.button-primary { background: linear-gradient(135deg, #ed4c3d, #bd251f); box-shadow: 0 14px 38px rgba(150, 29, 23, 0.25); color: white; }
.button-primary:hover { background: linear-gradient(135deg, #f55a4b, #cc2c24); }
.button-ghost { border-color: rgba(247, 233, 200, 0.25); background: rgba(13, 12, 12, 0.58); color: #ebdfc7; backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: rgba(247, 233, 200, 0.45); background: rgba(30, 27, 24, 0.82); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #9f927e; font-size: 0.75rem; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row b { color: var(--gold); }

.identity-card { position: relative; min-height: 430px; overflow: hidden; border: 1px solid rgba(215, 169, 76, 0.25); border-radius: 18px; background: linear-gradient(150deg, rgba(26, 21, 18, 0.94), rgba(12, 11, 11, 0.92)); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38); }
.identity-card::before { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 20%, rgba(8, 8, 8, 0.98) 66%); z-index: 1; }
.identity-art { position: absolute; inset: -28% -15% auto; display: flex; align-items: flex-start; justify-content: center; opacity: 0.7; }
.identity-art img { width: 96%; height: auto; flex: 0 0 auto; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.55)); }
.identity-content { position: absolute; inset: auto 24px 24px; z-index: 2; }
.identity-kicker { display: inline-flex; padding: 5px 9px; border: 1px solid rgba(215, 169, 76, 0.26); border-radius: 999px; background: rgba(215, 169, 76, 0.09); color: var(--gold-pale); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.identity-player { display: grid; grid-template-columns: 66px 1fr; align-items: center; gap: 14px; margin: 17px 0; }
.identity-player img { width: 66px; height: 66px; border: 1px solid rgba(215, 169, 76, 0.34); border-radius: 12px; background: #171414; object-fit: cover; object-position: center top; image-rendering: pixelated; }
.identity-player div { min-width: 0; display: flex; flex-direction: column; }
.identity-player small { color: #8f8472; font-size: 0.65rem; font-weight: 750; letter-spacing: 0.09em; text-transform: uppercase; }
.identity-player strong { overflow: hidden; text-overflow: ellipsis; color: #fff3d4; font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; }
.identity-player span { color: #ab9d87; font-size: 0.73rem; }
.identity-action { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 16px; border: 1px solid rgba(216, 58, 46, 0.45); border-radius: 9px; background: rgba(216, 58, 46, 0.13); color: #ffe7de; font-size: 0.82rem; font-weight: 800; transition: background 180ms ease, border-color 180ms ease; }
.identity-action:hover { border-color: rgba(240, 76, 59, 0.75); background: rgba(216, 58, 46, 0.22); }
.identity-action svg { width: 17px; }
.identity-action:disabled { opacity: 0.55; }
.identity-content > p { margin: 12px 0 0; color: #7f7566; font-size: 0.68rem; line-height: 1.5; }

.catalog-section { position: relative; padding: 84px 0 108px; }
.catalog-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.catalog-heading h2, .purchase-heading h2 { margin: 8px 0 10px; font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1; letter-spacing: -0.035em; }
.catalog-heading p, .purchase-heading > p { max-width: 620px; margin: 0; color: #9f927e; }
.catalog-status { min-width: 220px; display: grid; grid-template-columns: 10px 1fr; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: rgba(18, 16, 15, 0.74); }
.catalog-status > span { width: 8px; height: 8px; border-radius: 50%; background: #d49d43; box-shadow: 0 0 0 5px rgba(212, 157, 67, 0.09); animation: status-pulse 1.4s ease-in-out infinite; }
.catalog-status[data-catalog-status="ready"] > span { background: #71d287; box-shadow: 0 0 0 5px rgba(113, 210, 135, 0.09); animation: none; }
.catalog-status[data-catalog-status="waiting"] > span { background: #d49d43; animation: none; }
.catalog-status[data-catalog-status="error"] > span { background: #e46356; animation: none; }
.catalog-status div { display: flex; flex-direction: column; }
.catalog-status strong { color: #e9ddc6; font-size: 0.76rem; }
.catalog-status small { color: #887d6c; font-size: 0.66rem; }

.category-tabs { display: flex; gap: 9px; overflow-x: auto; padding: 2px 1px 14px; scrollbar-width: thin; scrollbar-color: rgba(215, 169, 76, 0.25) transparent; }
.category-tabs button { flex: 0 0 auto; min-height: 44px; display: inline-flex; align-items: center; gap: 9px; padding: 0 16px; border: 1px solid rgba(215, 169, 76, 0.17); border-radius: 999px; background: rgba(21, 18, 17, 0.7); color: #9e927e; font-size: 0.78rem; font-weight: 750; transition: border-color 180ms ease, color 180ms ease, background 180ms ease; }
.category-tabs button:hover { border-color: rgba(215, 169, 76, 0.42); color: #e9dcc3; }
.category-tabs button[aria-selected="true"] { border-color: rgba(216, 58, 46, 0.56); background: rgba(216, 58, 46, 0.11); color: #fff0de; }
.category-tabs button:disabled { opacity: 0.6; }
.category-tabs button span:not(.tab-skeleton) { min-width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: var(--gold); font-size: 0.61rem; }
.tab-skeleton { width: 12px; height: 12px; border-radius: 50%; background: rgba(215, 169, 76, 0.22); animation: shimmer 1.2s linear infinite alternate; }
.catalog-panel { min-height: 370px; padding-top: 17px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { position: relative; min-height: 410px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(215, 169, 76, 0.16); border-radius: 15px; background: linear-gradient(160deg, rgba(25, 21, 19, 0.93), rgba(13, 12, 12, 0.96)); transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(215, 169, 76, 0.38); box-shadow: 0 22px 54px rgba(0, 0, 0, 0.25); }
.product-media { position: relative; height: 176px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 20%, rgba(216, 58, 46, 0.24), transparent 48%), #110e0e; }
.product-media::after { position: absolute; inset: auto 0 0; height: 66px; content: ""; background: linear-gradient(transparent, rgba(15, 13, 12, 0.92)); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-media .product-monogram { width: 84px; height: 84px; display: grid; place-items: center; border: 1px solid rgba(215, 169, 76, 0.35); border-radius: 50%; background: rgba(8, 8, 8, 0.45); color: var(--gold-pale); font-family: var(--serif); font-size: 2rem; box-shadow: 0 0 55px rgba(216, 58, 46, 0.18); }
.product-badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 5px 8px; border: 1px solid rgba(215, 169, 76, 0.25); border-radius: 999px; background: rgba(7, 7, 7, 0.72); color: #d7c89f; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-content { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.product-content small { color: var(--red-bright); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.product-content h3 { margin: 7px 0 8px; color: #fff0d0; font-family: var(--serif); font-size: 1.55rem; line-height: 1.2; }
.product-content p { display: -webkit-box; overflow: hidden; margin: 0 0 22px; color: #9f927e; font-size: 0.82rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { display: flex; flex-direction: column; }
.product-price strong { color: var(--gold-pale); font-size: 1.16rem; }
.product-price span { color: #756c60; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; }
.add-button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 14px; border: 1px solid rgba(216, 58, 46, 0.46); border-radius: 8px; background: rgba(216, 58, 46, 0.12); color: #ffe7de; font-size: 0.75rem; font-weight: 800; transition: background 180ms ease, border-color 180ms ease; }
.add-button:hover { border-color: rgba(240, 76, 59, 0.78); background: rgba(216, 58, 46, 0.23); }
.add-button:disabled { opacity: 0.55; }
.add-button svg { width: 15px; }

.skeleton-card { padding: 16px; pointer-events: none; }
.skeleton-card > * { border-radius: 8px; background: linear-gradient(100deg, rgba(255,255,255,0.035) 25%, rgba(255,255,255,0.075) 45%, rgba(255,255,255,0.035) 65%); background-size: 200% 100%; animation: skeleton 1.3s linear infinite; }
.skeleton-card div { height: 180px; }
.skeleton-card span { width: 82px; height: 10px; margin-top: 22px; }
.skeleton-card b { width: 65%; height: 24px; margin-top: 12px; }
.skeleton-card p { width: 90%; height: 50px; }
.skeleton-card button { height: 42px; margin-top: auto; border: 0; }

.empty-catalog { grid-column: 1 / -1; width: 100%; min-width: 0; min-height: 390px; display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); align-items: stretch; overflow: hidden; border: 1px solid rgba(215, 169, 76, 0.18); border-radius: 16px; background: rgba(18, 15, 14, 0.82); }
.empty-visual { min-height: 330px; background: #130f0f; }
.empty-visual img { width: 100%; height: 100%; object-fit: cover; }
.empty-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 6vw, 70px); }
.empty-copy small { color: var(--gold); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.empty-copy h3 { margin: 10px 0 12px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.02; }
.empty-copy p { max-width: 520px; margin: 0; color: #9e917e; }
.empty-copy a { align-self: flex-start; margin-top: 24px; }
.error-catalog .empty-visual { display: grid; place-items: center; color: rgba(215, 169, 76, 0.55); font-family: var(--serif); font-size: 5rem; }

.purchase-info { padding: 104px 0; border-top: 1px solid rgba(215, 169, 76, 0.12); border-bottom: 1px solid rgba(215, 169, 76, 0.12); background: linear-gradient(135deg, rgba(85, 21, 17, 0.12), transparent 45%), #0b0a0a; }
.purchase-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 110px); }
.purchase-heading h2 { max-width: 560px; }
.purchase-steps { display: grid; }
.purchase-steps article { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(215, 169, 76, 0.13); }
.purchase-steps article:first-child { padding-top: 0; }
.purchase-steps article > span { color: var(--red-bright); font-family: var(--serif); font-size: 0.9rem; }
.purchase-steps strong { display: block; color: #ebddc3; font-family: var(--serif); font-size: 1.15rem; }
.purchase-steps p { margin: 5px 0 0; color: #8f8371; font-size: 0.8rem; }
.purchase-steps article.discord-step { margin: 8px 0; padding: 22px 18px; border: 1px solid rgba(88, 101, 242, 0.24); border-radius: 12px; background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(18, 16, 15, 0.5)); }
.purchase-steps article.discord-step > span { color: #8993ff; }
.optional-badge { display: inline-flex; margin-left: 8px; padding: 3px 7px; border: 1px solid rgba(137, 147, 255, 0.32); border-radius: 999px; color: #aab2ff; font-family: var(--sans); font-size: 0.55rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; vertical-align: middle; }

.site-footer { padding: 48px 0 24px; background: #070707; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { border-radius: 50%; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--serif); font-size: 1.15rem; }
.footer-brand span { color: #7f7567; font-size: 0.66rem; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-main nav a { color: #a79a85; font-size: 0.75rem; font-weight: 650; }
.footer-main nav a:hover { color: #eadbbf; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 21px; border-top: 1px solid rgba(215, 169, 76, 0.12); color: #6f675c; font-size: 0.66rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #a99261; text-decoration: underline; text-underline-offset: 3px; }

.cart-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(0, 0, 0, 0.67); backdrop-filter: blur(5px); opacity: 0; transition: opacity 220ms ease; }
.cart-drawer { position: fixed; inset: 0 0 0 auto; z-index: 100; width: min(440px, 100%); display: flex; flex-direction: column; border-left: 1px solid rgba(215, 169, 76, 0.2); background: #0d0c0c; box-shadow: -30px 0 90px rgba(0, 0, 0, 0.46); transform: translateX(100%); transition: transform 260ms cubic-bezier(.2,.8,.2,1); }
.cart-backdrop[hidden], .cart-drawer[hidden] { display: none; }
.cart-backdrop.is-open { opacity: 1; }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer > header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px; border-bottom: 1px solid rgba(215, 169, 76, 0.14); }
.cart-drawer > header span { color: var(--gold); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.cart-drawer > header h2 { margin: 2px 0 0; font-family: var(--serif); font-size: 1.8rem; line-height: 1; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; background: transparent; color: #cabc9f; }
.icon-button:hover { background: rgba(215, 169, 76, 0.09); }
.icon-button svg { width: 18px; }
.cart-player { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 11px; margin: 18px 24px 0; padding: 11px; border: 1px solid rgba(215, 169, 76, 0.15); border-radius: 10px; background: rgba(215, 169, 76, 0.045); }
.cart-player[hidden] { display: none; }
.cart-player img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; object-position: center top; image-rendering: pixelated; }
.cart-player div { display: flex; flex-direction: column; }
.cart-player small { color: #786f62; font-size: 0.61rem; text-transform: uppercase; letter-spacing: 0.08em; }
.cart-player strong { color: #e9dcc3; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #857b6b; }
.cart-empty > span { color: var(--gold); font-family: var(--serif); font-size: 2.8rem; }
.cart-empty strong { margin-top: 10px; color: #d9cbb2; font-family: var(--serif); font-size: 1.15rem; }
.cart-empty p { max-width: 250px; margin: 7px 0 0; font-size: 0.74rem; }
.cart-item { display: grid; grid-template-columns: 58px 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(215, 169, 76, 0.11); }
.cart-item img, .cart-item-monogram { width: 58px; height: 58px; border-radius: 9px; object-fit: cover; background: #181414; }
.cart-item-monogram { display: grid; place-items: center; color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.cart-item-copy { min-width: 0; display: flex; flex-direction: column; }
.cart-item-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #eadcc3; font-size: 0.82rem; }
.cart-item-copy span { color: #897e6c; font-size: 0.68rem; }
.remove-button { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(216, 58, 46, 0.22); border-radius: 8px; background: rgba(216, 58, 46, 0.05); color: #b86b61; }
.remove-button:hover { background: rgba(216, 58, 46, 0.13); color: #f08b7e; }
.remove-button svg { width: 15px; }
.cart-drawer > footer { padding: 20px 24px 24px; border-top: 1px solid rgba(215, 169, 76, 0.14); background: #0a0909; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.cart-total span { color: #968a77; font-size: 0.78rem; }
.cart-total strong { color: var(--gold-pale); font-family: var(--serif); font-size: 1.35rem; }
.checkout-button { width: 100%; min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(216, 58, 46, 0.6); border-radius: 9px; background: linear-gradient(135deg, #e14738, #bd251f); color: white; font-size: 0.82rem; font-weight: 850; }
.checkout-button:hover:not(:disabled) { background: linear-gradient(135deg, #f15444, #cb2c24); }
.checkout-button:disabled { border-color: rgba(255, 255, 255, 0.09); background: #1e1b1a; color: #6f675e; }
.checkout-button svg { width: 17px; }
.cart-drawer > footer > p { margin: 12px 0 0; color: #71685c; font-size: 0.65rem; text-align: center; }
.cart-drawer > footer > p span { color: var(--gold); }

.toast { position: fixed; right: 22px; bottom: 22px; z-index: 150; max-width: min(380px, calc(100% - 44px)); display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 11px; padding: 13px 16px; border: 1px solid rgba(215, 169, 76, 0.28); border-radius: 11px; background: rgba(17, 15, 14, 0.96); box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38); opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity 220ms ease, transform 220ms ease; }
.toast.visible { opacity: 1; transform: translateY(0); }
.toast-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(215, 169, 76, 0.09); color: var(--gold); }
.toast div { display: flex; flex-direction: column; }
.toast strong { color: #eadcc3; font-size: 0.76rem; }
.toast p { margin: 1px 0 0; color: #8f8371; font-size: 0.68rem; }
.noscript-message { position: fixed; inset: auto 20px 20px; z-index: 300; padding: 14px; border: 1px solid #d7a94c; border-radius: 9px; background: #181310; color: #f7e9c8; text-align: center; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes status-pulse { 50% { opacity: 0.45; transform: scale(0.8); } }
@keyframes shimmer { to { opacity: 0.38; } }
@keyframes skeleton { to { background-position: -200% 0; } }

@media (max-width: 920px) {
  .menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 0; background: transparent; }
  .menu-toggle > span:not(.sr-only) { width: 22px; height: 2px; display: block; border-radius: 2px; background: #d6c9b0; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: absolute; inset: 76px 20px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 16px; border: 1px solid rgba(215, 169, 76, 0.2); border-radius: 0 0 12px 12px; background: rgba(9, 9, 9, 0.97); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-links > button { width: 100%; min-height: 48px; justify-content: space-between; border: 0; border-bottom: 1px solid rgba(215, 169, 76, 0.11); border-radius: 0; background: transparent; text-align: left; }
  .nav-links > a { display: flex; align-items: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .store-hero { padding-top: 126px; }
  .identity-card { max-width: 560px; width: 100%; justify-self: center; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .purchase-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .brand > small { display: none; }
  .store-hero { min-height: auto; padding: 116px 0 58px; }
  .store-hero::before { background: linear-gradient(180deg, rgba(8, 8, 8, 0.87), rgba(8, 8, 8, 0.99) 78%), url("assets/share.png") center / cover no-repeat; opacity: 0.58; }
  .hero-copy h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero-copy > p { font-size: 0.94rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .trust-row { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .identity-card { min-height: 400px; }
  .catalog-section { padding: 68px 0 84px; }
  .catalog-heading { align-items: flex-start; flex-direction: column; }
  .catalog-status { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 390px; }
  .empty-catalog { grid-template-columns: 1fr; }
  .empty-visual { min-height: 230px; max-height: 270px; }
  .empty-copy { padding: 30px 24px 38px; }
  .purchase-info { padding: 76px 0; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-main nav { justify-content: flex-start; gap: 16px; }
  .footer-bottom { gap: 10px; }
  .cart-drawer { border-left: 0; }
  .toast { right: 14px; bottom: 14px; max-width: calc(100% - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
