.st58-page {
  display: grid;
  gap: 22px;
}

.st58-hero,
.st58-card,
.st58-product-card {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(15,23,42,.08);
}

.st58-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.15), transparent 34%),
    #fff;
}

.st58-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.st58-hero h1 {
  margin: 14px 0 8px;
  color: #0f172a;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .9;
  letter-spacing: -.075em;
}

.st58-hero p,
.st58-card p,
.st58-product-card p {
  color: #64748b;
  line-height: 1.6;
}

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

.st58-btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid #020617;
  background: #020617;
  color: #fff !important;
  padding: 0 18px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.st58-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15,23,42,.14);
}

.st58-btn.light {
  background: #fff;
  color: #020617 !important;
  border-color: #dbe3ec;
}

.st58-card,
.st58-product-card {
  padding: 24px;
}

.st58-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
}

.st58-admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.4fr);
  gap: 18px;
}

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

.st58-form label {
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 12px;
  font-weight: 950;
}

.st58-form input,
.st58-form select,
.st58-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dbe3ec;
  border-radius: 16px;
  padding: 10px 14px;
  background: #fff;
  color: #0f172a;
  font-weight: 750;
}

.st58-form textarea {
  min-height: 110px;
}

.st58-product-card {
  display: grid;
  gap: 12px;
}

.st58-product-card img,
.st58-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.st58-price {
  display: block;
  color: #0f172a;
  font-size: 30px;
  font-weight: 950;
}

.st58-muted {
  color: #64748b;
}

.st58-row {
  display: grid;
  grid-template-columns: 90px minmax(180px, 1fr) 140px 130px 170px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #f8fafc;
  margin-bottom: 10px;
}

.st58-row strong {
  display: block;
  color: #0f172a;
  font-weight: 950;
}

.st58-row small {
  display: block;
  color: #64748b;
  margin-top: 4px;
}

.st58-empty {
  padding: 22px;
  border-radius: 22px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  color: #64748b;
}

@media (max-width: 980px) {
  .st58-hero,
  .st58-admin-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .st58-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .st58-row {
    min-width: 820px;
  }
}
