:root {
  --bg: #0c0f14;
  --panel: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf4;
  --muted: #a6b1c2;
  --accent: #7af0c4;
  --accent-strong: #49e1a8;
  --danger: #ff6f61;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 22px;
  --grid-gap: clamp(16px, 3vw, 28px);
  --mouse-x: 50%;
  --mouse-y: 30%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(122, 240, 196, 0.08), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.04), transparent 30%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body.mode-customer .creator-only {
  display: none !important;
}

body.mode-creator .customer-only {
  display: none !important;
}

body.lock {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(220px at var(--mouse-x) var(--mouse-y), rgba(122, 240, 196, 0.1), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.6;
  z-index: 0;
}
a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.site-header,
.main-content,
.site-footer {
  position: relative;
  z-index: 1;
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.auth-page .reveal {
  opacity: 1;
  transform: none;
}

.inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(12, 15, 20, 0.7);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-link {
  color: inherit;
  padding: 8px 10px;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.brand-link:hover {
  background: var(--panel);
}

.brand-mark {
  background: linear-gradient(120deg, #54f4c8, #70b8ff);
  padding: 6px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(112, 184, 255, 0.28);
}

.brand-mark img {
  width: 28px;
  height: 28px;
  display: block;
}

.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(122, 240, 196, 0.16);
  border: 1px solid rgba(122, 240, 196, 0.3);
  color: var(--accent);
  font-size: 12px;
}

.brand-name {
  font-size: 18px;
}

.site-header .brand-name {
  font-family: 'Unbounded', 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.site-header .brand-name::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, #54f4c8, #70b8ff);
  border-radius: 999px;
  opacity: 0.65;
  transform: scaleX(0.62);
  transform-origin: left;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header .brand-link:hover .brand-name::after,
.site-header .brand-link:focus-visible .brand-name::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
  background: var(--panel);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 20;
}

.action-menu {
  position: relative;
}

.lang-menu {
  position: relative;
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

.lang-code {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--muted);
}

.action-menu .btn {
  padding: 10px 14px;
}

.lang-menu .btn {
  display: inline-flex;
  gap: 8px;
  padding: 10px 12px;
}

.action-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(12, 15, 20, 0.95);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  padding: 8px;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 200px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(12, 15, 20, 0.95);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  padding: 8px;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.action-dropdown.open {
  display: flex;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.lang-dropdown.open {
  display: flex;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.action-dropdown a,
.action-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  border: none;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  border: none;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.action-dropdown a:hover,
.action-dropdown button:hover {
  background: var(--panel);
}

.lang-dropdown button:hover {
  background: var(--panel);
}

.lang-dropdown button.active {
  background: rgba(122, 240, 196, 0.12);
  border: 1px solid rgba(122, 240, 196, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn.solid {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #0c0f14;
  box-shadow: 0 10px 30px rgba(74, 239, 175, 0.3);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn.follow-btn.is-following {
  background: rgba(122, 240, 196, 0.12);
  border-color: rgba(122, 240, 196, 0.35);
}

.btn.small {
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}

.main-content {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 32px 0 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: var(--grid-gap);
  align-items: center;
  padding: 28px 0 10px;
}

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

h1, h2, h3, h4 {
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(26px, 3.8vw, 34px);
  line-height: 1.2;
}

h3 {
  font-size: 20px;
}

.lede {
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 16px 0 22px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.hero-meta div {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
}

.kicker {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.drop-card {
  background: linear-gradient(160deg, rgba(122, 240, 196, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.drop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
}

.pill.live {
  background: rgba(122, 240, 196, 0.14);
  color: var(--accent);
  border-color: rgba(122, 240, 196, 0.4);
}

.pill.limited {
  color: #ffd8a6;
  border-color: rgba(255, 216, 166, 0.35);
}

.pill.ghost {
  background: transparent;
}

.drop-image {
  position: relative;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  height: 220px;
  margin: 10px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, rgba(122, 240, 196, 0.14), transparent 60%);
}

.drop-image .glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(122, 240, 196, 0.32), transparent 65%);
  filter: blur(24px);
}

.drop-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.drop-body p {
  margin: 4px 0 10px;
  color: var(--muted);
}

.progress {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 12px 0;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #70b8ff);
}

.drop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.stacked-cards {
  display: grid;
  gap: 10px;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--panel);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mini-card h4 {
  margin: 6px 0 4px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.time {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 50px 0;
}

.search-bar {
  padding: 26px 0 10px;
}

.search-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: clamp(18px, 3vw, 24px);
  display: grid;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.search-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-input input {
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 15px;
}

.search-input input::placeholder {
  color: var(--muted);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-header.demo-status-results-header {
  margin-top: 18px;
}

.card-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.merch-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.merch-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

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

.card.tall {
  min-height: 220px;
  align-content: space-between;
}

.card .badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: var(--muted);
}

.card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.catalog-page {
  padding-top: 24px;
}

.catalog-hero .drop-card {
  margin: 0;
}

.catalog-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.catalog-card .price {
  font-weight: 700;
  font-size: 18px;
}

.catalog-card .tagline {
  color: var(--muted);
  margin: 0;
}

.creator-page {
  padding-top: 24px;
}

.creator-profile {
  padding-top: 18px;
}

.creator-banner {
  height: clamp(180px, 24vw, 260px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 20% 20%, rgba(122, 240, 196, 0.18), transparent 60%),
              radial-gradient(circle at 80% 40%, rgba(112, 184, 255, 0.14), transparent 55%),
              rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.creator-banner.has-image {
  background-size: cover;
  background-position: center;
}

.creator-profile-card {
  margin-top: -54px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(18px, 3vw, 26px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122, 240, 196, 0.28);
  background: rgba(12, 15, 20, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.creator-avatar {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(120deg, rgba(122, 240, 196, 0.7), rgba(112, 184, 255, 0.65));
  color: #0c0f14;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
  overflow: hidden;
}

.creator-avatar.has-image {
  background-size: cover;
  background-position: center;
  color: transparent;
  text-indent: -999px;
}

.creator-profile-copy .tagline {
  color: var(--muted);
  margin: 8px 0 0;
}

.creator-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.creator-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.creator-socials a:hover {
  color: var(--text);
  border-color: rgba(122, 240, 196, 0.3);
  background: rgba(122, 240, 196, 0.06);
}

.pill.category {
  background: rgba(122, 240, 196, 0.12);
  border-color: rgba(122, 240, 196, 0.3);
  color: var(--accent);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(122, 240, 196, 0.16);
  border: 1px solid rgba(122, 240, 196, 0.35);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--text);
}

.avatar-lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(122, 240, 196, 0.16);
  border: 1px solid rgba(122, 240, 196, 0.35);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--text);
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill.active {
  background: rgba(122, 240, 196, 0.16);
  border-color: rgba(122, 240, 196, 0.4);
  color: var(--accent);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.auth-page {
  padding-top: 24px;
}

.auth-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--grid-gap);
  align-items: center;
}

.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(122, 240, 196, 0.12), rgba(12, 15, 20, 0.92));
  padding: clamp(20px, 3vw, 26px);
  box-shadow: var(--shadow);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: var(--text);
}

.form-field input {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 15px;
}

.form-field input::placeholder {
  color: var(--muted);
}

.form-field select {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 15px;
  appearance: none;
  width: 100%;
}

.form-field textarea {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 15px;
  min-height: 120px;
  resize: vertical;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 54px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.time-picker {
  display: inline-grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.time-picker select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}

.time-sep {
  color: var(--muted);
}

.select-wrap::after {
  content: "✓";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #0c0f14;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(74, 239, 175, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox input {
  width: 16px;
  height: 16px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.checkbox-grid .checkbox {
  color: var(--text);
}

.checkbox-grid .checkbox[data-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.muted-link {
  color: var(--muted);
  font-size: 14px;
}

.muted-link.strong {
  color: var(--accent);
  font-weight: 600;
}

.btn.full {
  width: 100%;
}

.form-row.alt {
  justify-content: flex-start;
  gap: 8px;
}

.catalog-page {
  padding-top: 24px;
}

.catalog-hero .drop-card {
  margin: 0;
}

.catalog-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.catalog-card .price {
  font-weight: 700;
  font-size: 18px;
}

.catalog-card .tagline {
  color: var(--muted);
  margin: 0;
}

.pill.category {
  background: rgba(122, 240, 196, 0.12);
  border-color: rgba(122, 240, 196, 0.3);
  color: var(--accent);
}

.creator-card {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.creator-head p {
  margin: 4px 0 0;
  color: var(--muted);
}

.creator-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.creator-stats {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.creator-stats [data-review-summary] {
  color: var(--accent);
  font-weight: 600;
}

.creator-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.creator-note-body {
  color: rgba(231, 245, 239, 0.92);
  font-size: 14px;
}

.creator-hero .creator-meta {
  margin: 12px 0;
}

.creator-card {
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.1s ease;
}

.creator-card:hover {
  border-color: rgba(122, 240, 196, 0.35);
  transform: translateY(-1px);
}

.coming-soon-card {
  max-width: 820px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  gap: 12px;
}

.category-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.category-card p {
  color: var(--muted);
  margin: 6px 0 0;
}

.cta {
  padding: 30px 0 80px;
}

.cta-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122, 240, 196, 0.35);
  background: linear-gradient(135deg, rgba(122, 240, 196, 0.12), rgba(12, 15, 20, 0.9));
  padding: clamp(22px, 4vw, 36px);
  display: grid;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-card .cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  width: min(960px, 92vw);
  background: rgba(12, 15, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.modal-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: start;
}

.creator-dialog .modal-body {
  grid-template-columns: 1fr;
}

.demo-dialog .modal-body {
  grid-template-columns: 1fr;
}

.demo-dialog {
  max-height: 92vh;
  overflow: auto;
}

.creator-meta-lines {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.creator-tags-line {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.basket-body {
  grid-template-columns: 1fr;
  gap: 16px;
}

.modal-media {
  display: grid;
  gap: 10px;
}

.modal-main {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.modal-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 8px;
}

.modal-thumb {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
}

.modal-thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}

.modal-info {
  display: grid;
  gap: 12px;
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-description {
  margin: 0;
  color: var(--muted);
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.modal-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.basket-list {
  display: grid;
  gap: 12px;
}

.basket-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--panel);
}

.basket-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

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

.basket-meta h4 {
  margin: 0 0 4px;
}

.basket-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.basket-actions-row {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.basket-footer {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.basket-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.my-drops-card {
  align-content: start;
}

.my-drops-card .meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.demo-request-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.flash-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  margin: 0 0 14px;
}

.flash-message.ok {
  border-color: rgba(122, 240, 196, 0.35);
  background: rgba(122, 240, 196, 0.12);
  color: var(--accent);
}

.flash-message.error {
  border-color: rgba(255, 122, 122, 0.35);
  background: rgba(255, 122, 122, 0.1);
  color: rgba(255, 231, 231, 0.95);
}

.pill.status.pending {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.pill.status.approved {
  background: rgba(122, 240, 196, 0.14);
  border-color: rgba(122, 240, 196, 0.35);
  color: var(--accent);
}

.pill.status.declined {
  background: rgba(255, 122, 122, 0.12);
  border-color: rgba(255, 122, 122, 0.28);
  color: rgba(255, 231, 231, 0.95);
}

.demo-request-actions {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.demo-actions summary {
  list-style: none;
}

.demo-actions summary::-webkit-details-marker {
  display: none;
}

.demo-actions-grid {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.demo-decision-form {
  display: grid;
  gap: 12px;
}

.demo-decision-form.decline {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.demo-decision .muted-label {
  margin: 0;
}

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

.size-pill {
  min-width: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  text-align: center;
}

.size-pill.selected {
  border-color: rgba(122, 240, 196, 0.4);
  background: rgba(122, 240, 196, 0.16);
  color: var(--accent);
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 12px;
}

.reviews-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-title {
  margin: 0;
  font-size: 16px;
}

.reviews-summary {
  margin: 0;
}

.reviews-list {
  display: grid;
  gap: 10px;
}

.review-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-stars {
  color: rgba(122, 240, 196, 0.9);
  font-size: 14px;
  letter-spacing: 1px;
}

.reviews .form-field textarea {
  min-height: 92px;
}

.star-input {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}

.star-btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: rgba(231, 245, 239, 0.5);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.star-btn.filled {
  color: rgba(122, 240, 196, 0.95);
  border-color: rgba(122, 240, 196, 0.35);
  background: rgba(122, 240, 196, 0.12);
}

.reviews-status {
  text-align: right;
}

.coming-soon-card {
  max-width: 820px;
  margin: 0 auto;
}

.empty-state {
  margin: 12px 0 0;
  color: var(--muted);
  display: none;
}

.empty-state.show {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(12, 15, 20, 0.85);
  padding: 32px 0 26px;
}

.site-footer .inner {
  align-items: flex-start;
}

.footer-brand p {
  color: var(--muted);
  margin: 8px 0 0;
  max-width: 260px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px 22px;
}

.footer-links h4 {
  margin: 0 0 10px;
}

.footer-links a {
  display: block;
  color: var(--muted);
  padding: 6px 0;
}

.footer-newsletter {
  max-width: 320px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
}

.inline-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.inline-form input::placeholder {
  color: var(--muted);
}

.form-error {
  color: var(--danger);
  margin-top: 10px;
}

.newsletter-message {
  margin-top: 8px;
  color: var(--accent);
  font-size: 14px;
  display: none;
}

.newsletter-message.show {
  display: block;
}

.footer-newsletter small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.footer-bottom {
  width: min(1200px, 92vw);
  margin: 18px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: var(--panel);
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 16px;
    background: rgba(12, 15, 20, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions .btn {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer .inner {
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .inner {
    padding: 14px 0;
  }

  .site-header .brand-name {
    font-size: 16px;
    letter-spacing: 0.18em;
  }

  .site-header .brand-name::after {
    bottom: -5px;
  }

  .main-content {
    padding-top: 18px;
  }

  .creator-profile-card {
    grid-template-columns: 1fr;
    margin-top: -42px;
  }

  .creator-avatar {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    font-size: 20px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .search-input {
    grid-template-columns: 1fr;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-main img {
    height: 240px;
  }

  .basket-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
