.sellkit-store-wrap {
  --sellkit-bg: #0d0f10;
  --sellkit-panel: #171a1c;
  --sellkit-line: #2d3133;
  --sellkit-ink: #ffffff;
  --sellkit-muted: #b9bdb9;
  --sellkit-accent: #ff5c22;
  --sellkit-accent-2: #d8ff3e;
  box-sizing: border-box;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 64px);
  overflow: hidden;
  background: var(--sellkit-bg);
  color: var(--sellkit-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sellkit-store-wrap *,
.sellkit-store-wrap *::before,
.sellkit-store-wrap *::after {
  box-sizing: border-box;
}

.sellkit-store-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.sellkit-store-brand {
  font-size: 1.4rem;
  font-weight: 950;
  letter-spacing: -.05em;
}

.sellkit-store-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sellkit-accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sellkit-store-mark {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--sellkit-accent-2);
  box-shadow: -18px 18px 0 rgba(255, 92, 34, .18);
}

.sellkit-store-hero {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: clamp(70px, 10vw, 120px) 0 60px;
}

.sellkit-store-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.065em;
}

.sellkit-store-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--sellkit-muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
}

.sellkit-store-products {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sellkit-store-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--sellkit-line);
  border-radius: 18px;
  background: var(--sellkit-panel);
}

.sellkit-store-card h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.05;
}

.sellkit-store-card p {
  min-height: 48px;
  margin: 12px 0 20px;
  color: var(--sellkit-muted);
  font-size: .9rem;
  line-height: 1.45;
}

.sellkit-store-price {
  margin-top: auto;
  font-size: 2.1rem;
  font-weight: 950;
  letter-spacing: -.05em;
}

.sellkit-store-price span {
  color: var(--sellkit-muted);
  font-size: 1rem;
}

.sellkit-store-buy,
.sellkit-store-pending {
  display: block;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  text-align: center;
  font-size: .9rem;
  font-weight: 900;
}

.sellkit-store-buy {
  background: #fff;
  color: #111;
  text-decoration: none;
}

.sellkit-store-buy:hover,
.sellkit-store-buy:focus-visible {
  background: var(--sellkit-accent-2);
  color: #111;
}

.sellkit-store-pending {
  border: 1px dashed var(--sellkit-line);
  color: var(--sellkit-muted);
}

.sellkit-store-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px;
  border: 1px dashed var(--sellkit-line);
  color: var(--sellkit-muted);
  text-align: center;
}

.sellkit-store-footer {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--sellkit-line);
  color: #7e8480;
  font-size: .78rem;
}

@media (max-width: 760px) {
  .sellkit-store-products {
    grid-template-columns: 1fr;
  }

  .sellkit-store-mark {
    width: 54px;
    height: 54px;
  }
}
