@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #06070b;
  --panel: #0f141c;
  --card: #161b24;
  --line: #2a3444;
  --text: #f4f6fb;
  --muted: #9aa7bd;
  --primary: #ff1b2d;
  --primary-2: #ff4b5b;
  --accent: #ff1b2d;
  --glow: rgba(255, 27, 45, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(980px 520px at 8% -10%, rgba(255, 27, 45, 0.14), transparent 46%),
    radial-gradient(980px 620px at 100% 0%, rgba(255, 75, 91, 0.08), transparent 44%),
    var(--bg);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.categories {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 18px;
  margin: 0 auto 26px;
  padding: 14px 14px 10px;
  width: min(980px, 100%);
  border: 1px solid rgba(38, 52, 70, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 25, 36, 0.72) 0%, rgba(10, 15, 23, 0.58) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scrollbar-color: rgba(255, 75, 91, 0.55) rgba(18, 24, 34, 0.4);
}

.categories::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.categories::before,
.categories::after {
  content: "";
  position: sticky;
  top: 0;
  width: 26px;
  min-width: 26px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.categories::before {
  left: 0;
  margin-left: -14px;
  background: linear-gradient(90deg, rgba(6, 7, 11, 0.95), rgba(6, 7, 11, 0));
}

.categories::after {
  right: 0;
  margin-right: -14px;
  background: linear-gradient(270deg, rgba(6, 7, 11, 0.95), rgba(6, 7, 11, 0));
}

.topbar {
  max-width: 1480px;
  width: calc(100% - 32px);
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 28px;
}

.brand {
  display: none;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--primary-2);
}

.wrap {
  max-width: 1480px;
  width: calc(100% - 32px);
  margin: 8px auto 40px;
}

.site-footer {
  max-width: 1480px;
  width: calc(100% - 32px);
  margin: 12px auto 44px;
  border: 1px solid rgba(42, 52, 68, 0.95);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 20, 28, 0.94), rgba(10, 14, 21, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.site-footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
}

.site-footer-copy {
  max-width: 760px;
}

.site-footer-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Antonio", sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-nav a:hover {
  color: var(--primary-2);
}

.hero {
  position: relative;
  border-radius: 26px;
  overflow: visible;
  min-height: clamp(330px, 27vw, 430px);
  display: grid;
  align-items: center;
  margin: 4px auto 24px;
  border: 0;
  background: #06080d;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -13vw;
  right: -13vw;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 8, 13, 0.18), rgba(6, 8, 13, 0.82)),
    url("hero-bg.png") center 43%/136% auto no-repeat;
  filter: blur(10px) saturate(1.02) brightness(0.72);
  opacity: 0.56;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 12%, rgba(0, 0, 0, 0.86) 24%, rgba(0, 0, 0, 0.86) 76%, rgba(0, 0, 0, 0.34) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 12%, rgba(0, 0, 0, 0.86) 24%, rgba(0, 0, 0, 0.86) 76%, rgba(0, 0, 0, 0.34) 88%, transparent 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -18px -9vw -26px;
  z-index: -3;
  background:
    radial-gradient(ellipse at center, rgba(86, 14, 18, 0.16) 0%, rgba(28, 8, 11, 0.08) 34%, rgba(0, 0, 0, 0) 72%);
  filter: blur(22px);
  opacity: 0.52;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.32), rgba(5, 6, 10, 0.76)),
    url("hero-bg.png") center 44%/122% auto no-repeat;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.04);
  transform-origin: center;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -2% -8%;
  background:
    radial-gradient(ellipse at center, rgba(255, 38, 48, 0.16) 0%, rgba(255, 38, 48, 0.08) 20%, rgba(0, 0, 0, 0) 54%),
    linear-gradient(90deg, rgba(4, 5, 8, 0.98) 0%, rgba(4, 5, 8, 0.7) 12%, rgba(4, 5, 8, 0.14) 28%, rgba(4, 5, 8, 0.04) 50%, rgba(4, 5, 8, 0.14) 72%, rgba(4, 5, 8, 0.7) 88%, rgba(4, 5, 8, 0.98) 100%);
  filter: blur(3px);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(255, 35, 45, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(3, 4, 7, 0.9) 0%, rgba(3, 4, 7, 0.34) 16%, transparent 34%, transparent 66%, rgba(3, 4, 7, 0.34) 84%, rgba(3, 4, 7, 0.9) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 22px 56px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-align: center;
  min-height: inherit;
}

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

.hero-logo {
  position: relative;
  margin: 0 auto;
  width: min(1120px, 96%);
  height: clamp(122px, 12.8vw, 182px);
  background: url("hero-right.png") center/contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(255, 32, 48, 0.7));
  animation: glowPulse 3.2s ease-in-out infinite;
}

.hero-logo::before,
.hero-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("hero-right.png") center/contain no-repeat;
  opacity: 0.32;
  mix-blend-mode: screen;
  animation: glitch 1.9s infinite;
}

.hero-logo::after {
  opacity: 0.22;
  animation-delay: 0.35s;
}

.hero-subtitle {
  display: none;
}

.hero-asset {
  position: absolute;
  top: 22%;
  width: clamp(130px, 16vw, 230px);
  height: clamp(130px, 16vw, 230px);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 20px rgba(255, 32, 48, 0.62));
}

.hero-left {
  left: 3%;
  top: 20%;
  animation-duration: 6.2s;
  background-image: url("hero-left.png");
}

.hero-left::after {
  content: "";
  position: absolute;
  left: 57%;
  top: 78%;
  width: 30px;
  height: 72px;
  border-radius: 18px 18px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 86, 86, 0.92) 0%, rgba(216, 26, 34, 0.86) 38%, rgba(136, 8, 14, 0.08) 100%);
  filter: blur(0.6px) drop-shadow(0 0 8px rgba(255, 38, 38, 0.38));
  clip-path: polygon(36% 0%, 64% 0%, 70% 20%, 66% 58%, 76% 78%, 61% 100%, 39% 100%, 24% 78%, 34% 58%, 30% 20%);
  transform-origin: top center;
  animation: liquidDrip 2.8s ease-in-out infinite;
}

.hero-right {
  right: 3%;
  top: 18%;
  animation-duration: 5.8s;
  background-image: url("hero-logo.png");
  background-size: 79%;
  filter: drop-shadow(0 0 22px rgba(255, 32, 48, 0.64));
  isolation: isolate;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 53%, rgba(0, 0, 0, 0.92) 66%, rgba(0, 0, 0, 0.5) 77%, transparent 92%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0 53%, rgba(0, 0, 0, 0.92) 66%, rgba(0, 0, 0, 0.5) 77%, transparent 92%);
  animation: float 5.8s ease-in-out infinite, glowPulse 2.4s ease-in-out infinite;
}

.hero-right::before,
.hero-right::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-right::before {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 245, 245, 0.95) 0%, rgba(255, 80, 80, 0.78) 16%, rgba(255, 34, 34, 0.28) 38%, rgba(255, 34, 34, 0) 72%);
  filter: blur(7px);
  mix-blend-mode: screen;
  z-index: -2;
  animation: orbPulse 2s ease-in-out infinite;
}

.hero-right::after {
  display: block;
  width: 100%;
  height: 100%;
  background: url("hero-logo.png") center/79% no-repeat;
  opacity: 0.26;
  filter: blur(5px) saturate(1.08);
  mix-blend-mode: screen;
  z-index: -1;
}

.hero-controls {
  margin-top: -2px;
  display: grid;
  gap: 12px;
  justify-items: center;
  width: min(1320px, 100%);
}

.hero-cats {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 8px;
  justify-content: center;
}

.hero-cats .cat {
  flex-direction: row;
  min-width: 0;
  gap: 4px;
  padding: 0 2px;
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 237, 237, 0.82);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.65);
}

.hero-cats .cat-icon {
  display: none;
}

.hero-cats .cat-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-cats .cat::after {
  content: "|";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-cats .cat:last-child::after {
  content: "";
}

.hero-cats .cat:hover,
.hero-cats .cat.active {
  color: #ff5a66;
  text-shadow: 0 0 18px rgba(255, 27, 45, 0.9);
}

.hero-search {
  width: min(1220px, 100%);
  height: 40px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(84, 8, 12, 0.94), rgba(112, 12, 18, 0.96) 52%, rgba(149, 18, 25, 0.94) 100%);
  border: 0;
  padding: 0 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(255, 40, 52, 0.18);
}

.hero-search .search-ico {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-weight: 700;
  color: rgba(255, 232, 232, 0.95);
  min-width: 88px;
  text-align: center;
}

.hero-search input {
  flex: 1;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
}

.hero-search input::placeholder {
  color: rgba(255, 225, 225, 0.66);
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 22px rgba(255, 27, 45, 0.65); }
  50% { text-shadow: 0 0 38px rgba(255, 27, 45, 0.9); }
}

@keyframes glitch {
  0% { transform: translate(0); opacity: 0.6; clip-path: inset(0 0 80% 0); }
  15% { transform: translate(-2px, -1px); clip-path: inset(15% 0 55% 0); }
  30% { transform: translate(2px, 1px); clip-path: inset(35% 0 35% 0); }
  45% { transform: translate(-1px, 2px); clip-path: inset(55% 0 15% 0); }
  60% { transform: translate(1px, -2px); clip-path: inset(10% 0 65% 0); }
  100% { transform: translate(0); opacity: 0.5; clip-path: inset(0 0 80% 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes liquidDrip {
  0%, 100% { transform: translateY(0) scaleY(0.94); opacity: 0.72; }
  35% { transform: translateY(4px) scaleY(1.04); opacity: 0.9; }
  70% { transform: translateY(10px) scaleY(1.12); opacity: 0.58; }
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.86); opacity: 0.62; }
  45% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
  70% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.84; }
}

.outfit-filters {
  margin: -2px 0 18px;
}

.outfit-title {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.outfit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.outfit-chip {
  border: 1px solid rgba(255, 27, 45, 0.28);
  background: rgba(22, 29, 40, 0.88);
  color: #f3f6fb;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.outfit-chip:hover {
  border-color: rgba(255, 75, 91, 0.52);
}

.outfit-chip.active {
  color: #fff6f6;
  border-color: rgba(255, 75, 91, 0.7);
  background: linear-gradient(180deg, rgba(255, 65, 78, 0.95), rgba(204, 24, 36, 0.96));
  box-shadow: 0 0 18px rgba(255, 27, 45, 0.22);
}

.outfit-card-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.outfit-card {
  border: 1px solid #2a3a4f;
  border-radius: 12px;
  overflow: hidden;
  background: #101928;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.outfit-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-2);
}

.outfit-card.active {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 1px rgba(69, 230, 210, 0.35);
}

.outfit-card-image {
  height: 120px;
}

.outfit-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.outfit-card-meta {
  padding: 8px 10px 10px;
}

.outfit-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-2);
}

.outfit-card-name {
  margin: 4px 0;
  font-size: 14px;
}

.outfit-card-count {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.cat {
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 0 2px;
  min-width: 88px;
}

.cat-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid rgba(50, 73, 97, 0.95);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 70% 75%, rgba(69, 230, 210, 0.10), transparent 55%),
    radial-gradient(circle at 50% 40%, #223144, #141f2f 60%, #0f1723 100%);
  display: grid;
  place-items: center;
  color: #cfe1ff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.32), 0 10px 26px rgba(0, 0, 0, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.cat-icon svg {
  width: 30px;
  height: 30px;
}

.cat:hover .cat-icon {
  transform: translateY(-2px);
  border-color: rgba(255, 82, 82, 0.7);
  color: #e7fbff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.32), 0 16px 36px rgba(0, 0, 0, 0.38);
}

.cat.active .cat-icon {
  border-color: var(--primary-2);
  color: #031920;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 45%),
    radial-gradient(circle at 70% 75%, rgba(0, 0, 0, 0.12), transparent 55%),
    linear-gradient(135deg, #ff6b6b 0%, #ff3d3d 35%, #ff2d2d 100%);
  box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.16), 0 18px 44px rgba(0, 0, 0, 0.38);
}

.cat-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbe9ff;
}

.controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin: 2px 0 10px;
}

.searchbox {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  border-radius: 28px;
  background: #1a2431;
  border: 1px solid var(--line);
  padding: 0 16px;
}

.search-ico {
  color: #c2cde0;
  font-size: 18px;
}

.searchbox input {
  flex: 1;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
  font-size: 16px;
}

.searchbox input::placeholder {
  color: #8ea0b9;
}

.sortbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  justify-content: flex-start;
}

.sortbox label {
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 240, 240, 0.96);
}

.sortbox select {
  height: 40px;
  min-width: 300px;
  border-radius: 999px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(84, 8, 12, 0.9), rgba(112, 12, 18, 0.94) 52%, rgba(149, 18, 25, 0.9) 100%);
  color: var(--text);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24), 0 0 16px rgba(255, 27, 45, 0.12);
  outline: none;
  appearance: none;
  background-image:
    linear-gradient(90deg, rgba(84, 8, 12, 0.9), rgba(112, 12, 18, 0.94) 52%, rgba(149, 18, 25, 0.9) 100%),
    linear-gradient(45deg, transparent 50%, rgba(255, 228, 228, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 228, 228, 0.78) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position:
    0 0,
    calc(100% - 22px) 20px,
    calc(100% - 16px) 20px;
  background-size:
    100% 100%,
    6px 6px,
    6px 6px;
}

.sortbox select:hover,
.sortbox select:focus {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 22px rgba(255, 27, 45, 0.18);
}

.sortbox select option {
  background: #141b27;
  color: #f4f6fb;
}

.results-bar {
  margin: 0 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.results-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.results-bar button {
  background: rgba(24, 34, 48, 0.96);
  color: var(--text);
  border: 1px solid rgba(255, 27, 45, 0.24);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}

.stats-page .wrap {
  padding-top: 48px;
}

.stats-wrap {
  display: grid;
  gap: 24px;
}

.stats-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.stats-kicker {
  margin: 0 0 8px;
  color: #95a6c3;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-hero h1 {
  margin: 0;
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f6fbff;
}

.stats-copy {
  margin: 10px 0 0;
  max-width: 640px;
  color: #95a6c3;
  line-height: 1.6;
}

.stats-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 27, 45, 0.22);
  background: rgba(19, 26, 39, 0.86);
  color: #f6fbff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.admin-gate {
  background:
    linear-gradient(180deg, rgba(18, 24, 35, 0.95), rgba(12, 16, 24, 0.98)),
    radial-gradient(circle at top left, rgba(255, 59, 59, 0.12), transparent 44%);
  border: 1px solid rgba(255, 27, 45, 0.16);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.admin-gate h2 {
  margin: 0 0 8px;
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-gate p {
  margin: 0;
  color: #95a6c3;
}

.stats-panel {
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.stats-summary {
  display: grid;
  gap: 14px;
}

.stats-card,
.stats-top {
  background:
    linear-gradient(180deg, rgba(18, 24, 35, 0.95), rgba(12, 16, 24, 0.98)),
    radial-gradient(circle at top left, rgba(255, 59, 59, 0.12), transparent 44%);
  border: 1px solid rgba(255, 27, 45, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.stats-card {
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}

.stats-card-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #95a6c3;
}

.stats-card-value {
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: 1;
  color: #f6fbff;
  letter-spacing: 0.02em;
}

.stats-card-value--sm {
  font-size: 22px;
  line-height: 1.15;
}

.stats-top {
  padding: 18px 20px;
}

.stats-top-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.stats-top-head h2 {
  margin: 0;
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 244, 244, 0.96);
}

.stats-top-head span {
  color: #95a6c3;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.stats-top-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.stats-top-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-top-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.stats-top-name {
  color: #e8f0ff;
  font-size: 14px;
  line-height: 1.35;
}

.stats-top-clicks {
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-size: 20px;
  color: #ff5959;
  letter-spacing: 0.05em;
}

.stats-top-empty {
  color: #95a6c3;
  font-size: 14px;
  padding: 4px 0;
}

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

.product-card {
  border-radius: 0;
  overflow: visible;
  position: relative;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease;
}

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

.product-image {
  position: relative;
  height: 340px;
  background: linear-gradient(180deg, #fbfbfb 0%, #f1ece7 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.product-card:hover .product-image {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 27, 45, 0.1);
}

.product-image-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 16px;
}

.product-image-img.is-swapping {
  opacity: 0.78;
}

.made {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #f8fafc;
  font-weight: 900;
  font-size: 32px;
  line-height: 0.9;
  text-align: right;
  text-shadow: 1px 1px 0 #0a0f17, -1px -1px 0 #0a0f17;
}

.fav {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: rgba(9, 12, 18, 0.18);
  color: rgba(114, 135, 164, 0.9);
  font-size: 22px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.fav:hover {
  color: #d8e2f1;
}

.product-meta {
  position: relative;
  min-height: 0;
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  background: transparent;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.product-name {
  margin: 0;
  font-family: "Antonio", "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #f8f4f2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.45);
}

.stats {
  display: flex;
  gap: 12px;
  color: #95a4bc;
  font-size: 11px;
  justify-content: center;
}

.price {
  display: block;
  margin-top: 2px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
  color: #fff7f4;
  letter-spacing: 0.01em;
}

.empty {
  grid-column: 1 / -1;
  border: 1px dashed #33485f;
  border-radius: 12px;
  text-align: center;
  color: #9aabc4;
  padding: 18px;
}

@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .topbar {
    margin-top: 6px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero-inner {
    padding: 18px 22px 22px;
  }

  .hero::before {
    left: -9vw;
    right: -9vw;
    background:
      linear-gradient(180deg, rgba(6, 8, 13, 0.2), rgba(6, 8, 13, 0.84)),
      url("hero-bg.png") center 43%/148% auto no-repeat;
  }

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

  .sortbox {
    justify-content: flex-start;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stats-hero {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

@media (max-width: 760px) {
  .topbar {
    justify-content: flex-end;
    align-items: center;
    min-height: 24px;
  }

  .hero-asset {
    display: none;
  }

  .hero {
    min-height: 270px;
    overflow: hidden;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 6, 10, 0.36), rgba(5, 6, 10, 0.8)),
      url("hero-bg.png") center 42%/148% auto no-repeat;
    transform: scale(1.02);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-logo {
    width: 100%;
    height: clamp(84px, 16vw, 116px);
  }

  .hero-cats {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 4px;
  }

  .categories {
    scrollbar-width: thin;
  }

  .categories::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  .categories::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 75, 91, 0.5);
  }

  .categories::-webkit-scrollbar-track {
    background: rgba(16, 23, 33, 0.35);
  }

  .hero-cats .cat,
  .hero-cats .cat-label {
    font-size: 15px;
  }

  .hero-search {
    width: 100%;
    height: 46px;
  }

  .sortbox select {
    min-width: 220px;
  }

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

  .product-image {
    height: 280px;
  }

  .outfit-card-list {
    grid-template-columns: 1fr;
  }
}

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

  .categories {
    width: 100%;
    justify-content: flex-start;
  }

  .cat {
    min-width: 84px;
  }

  .hero-inner {
    padding: 14px 16px 18px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 6, 10, 0.4), rgba(5, 6, 10, 0.82)),
      url("hero-bg.png") center 40%/170% auto no-repeat;
    transform: none;
  }

  .hero-cats .cat,
  .hero-cats .cat-label {
    font-size: 14px;
  }

  .hero-search .search-ico {
    font-size: 14px;
    min-width: 68px;
  }

  .results-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-top-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-link {
    width: 100%;
  }

  .site-footer {
    width: calc(100% - 16px);
    margin-bottom: 24px;
  }

  .site-footer-inner {
    flex-direction: column;
    padding: 18px;
  }

  .site-footer-nav {
    justify-content: flex-start;
    gap: 12px 18px;
  }
}

