.pc-bg-orb {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(22px);
  opacity: 0.44;
}

.pc-bg-orb-a {
  top: -160px;
  left: -130px;
  background: radial-gradient(circle, rgba(126, 231, 255, 0.18), transparent 68%);
}

.pc-bg-orb-b {
  right: -150px;
  bottom: -170px;
  background: radial-gradient(circle, rgba(231, 194, 118, 0.12), transparent 70%);
}

.pc-glass-card,
.pc-glass-panel {
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pc-glass-card {
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.pc-glass-card:hover {
  border-color: var(--pc-border-strong);
  box-shadow: var(--pc-shadow), var(--pc-glow);
}

.pc-kicker {
  margin: 0;
  color: var(--pc-primary-dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pc-brand-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(126, 231, 255, 0.20), rgba(231, 194, 118, 0.12)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(126, 231, 255, 0.22);
  color: var(--pc-primary-container);
}

.pc-brand-mark-small {
  width: 48px;
  height: 48px;
  border-radius: 18px;
}

.pc-language-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pc-language-chip {
  min-width: 42px;
  padding: 8px 11px;
  border-radius: 999px;
  text-align: center;
  color: var(--pc-text-muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.pc-language-chip.is-active {
  color: #00363f;
  background: linear-gradient(135deg, var(--pc-primary-container), var(--pc-primary-dim));
  border-color: rgba(126, 231, 255, 0.42);
}

.pc-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

.pc-field span {
  color: var(--pc-text-muted);
  font-size: 13px;
  font-weight: 800;
}

.pc-field input {
  width: 100%;
  min-height: 52px;
  padding: 15px 16px;
  color: var(--pc-text);
  outline: none;
  border-radius: 18px;
  border: 1px solid rgba(160, 220, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.pc-field input:focus {
  border-color: var(--pc-primary-container);
  box-shadow: 0 0 0 4px rgba(126, 231, 255, 0.10);
}

.pc-primary-button,
.pc-ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 900;
}

.pc-primary-button {
  color: #00363f;
  background: linear-gradient(135deg, var(--pc-primary-container), var(--pc-primary-dim));
  box-shadow: 0 18px 48px rgba(107, 213, 236, 0.22);
}

.pc-ghost-button {
  color: var(--pc-text);
  padding: 0 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(160, 220, 255, 0.10);
}

.pc-error-box {
  margin-top: 18px;
  padding: 13px 14px;
  color: var(--pc-danger);
  background: rgba(255, 180, 171, 0.10);
  border: 1px solid rgba(255, 180, 171, 0.22);
  border-radius: 18px;
}

.pc-secure-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: var(--pc-text-soft);
  font-size: 13px;
}

.pc-status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pc-primary-container);
  box-shadow: 0 0 16px rgba(126, 231, 255, 0.72);
}

.pc-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  color: var(--pc-text-muted);
  border-radius: 16px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.pc-nav-link:hover,
.pc-nav-link.is-active {
  color: var(--pc-primary-container);
  background: rgba(107, 213, 236, 0.09);
}

.pc-stat-card {
  padding: 22px;
  border-radius: 24px;
}

.pc-stat-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--pc-text-muted);
  font-size: 13px;
  font-weight: 800;
}

.pc-stat-card strong {
  display: block;
  color: var(--pc-text);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pc-panel-card {
  padding: 24px;
  border-radius: 26px;
}

.pc-section-head h3 {
  margin: 0 0 18px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.pc-health-list,
.pc-action-list,
.pc-focus-list {
  display: grid;
  gap: 12px;
}

.pc-health-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(160, 220, 255, 0.08);
}

.pc-health-item p {
  margin: 3px 0 0;
  color: var(--pc-text-muted);
}

.pc-action-list a {
  display: block;
  padding: 14px;
  border-radius: 18px;
  color: var(--pc-text);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(160, 220, 255, 0.08);
}

.pc-focus-list {
  margin: 0;
  padding-left: 20px;
  color: var(--pc-text-muted);
  line-height: 1.55;
}
.pc-muted-text {
  margin: 0;
  color: var(--pc-text-muted);
  line-height: 1.58;
}

.pc-small-stat {
  font-size: 17px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
}
.pc-products-grid {
  display: grid;
  gap: 18px;
}

.pc-product-card {
  padding: 22px;
  border-radius: 28px;
}

.pc-product-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pc-product-code {
  margin: 0 0 6px;
  color: var(--pc-primary-dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
}

.pc-product-head h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.pc-product-badge {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.pc-product-badge.is-active {
  color: #00363f;
  background: linear-gradient(135deg, var(--pc-primary-container), var(--pc-primary-dim));
}

.pc-product-badge.is-inactive {
  color: var(--pc-text-muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(160, 220, 255, 0.08);
}

.pc-product-form {
  display: grid;
  gap: 15px;
}

.pc-form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pc-checkbox-field input {
  width: 24px;
  min-height: 24px;
}

.pc-product-price {
  display: grid;
  align-content: center;
  min-height: 76px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(160, 220, 255, 0.08);
}

.pc-product-price span {
  color: var(--pc-secondary);
  font-size: 24px;
  font-weight: 950;
}

.pc-product-price small {
  color: var(--pc-text-muted);
}

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

  .pc-product-head {
    display: grid;
  }
}
.pc-product-preview {
  max-width: 760px;
  margin: 8px 0 0;
}
.pc-empty-state {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px 18px;
  text-align: center;
  color: var(--pc-text-muted);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(160, 220, 255, 0.08);
}

.pc-empty-state .material-symbols-outlined {
  color: var(--pc-primary-container);
  font-size: 34px;
}

.pc-empty-state h3 {
  margin: 0;
  color: var(--pc-text);
}

.pc-empty-state p {
  max-width: 680px;
  margin: 0;
  line-height: 1.55;
}

.pc-table-wrap {
  overflow-x: auto;
}

.pc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.pc-table th,
.pc-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(160, 220, 255, 0.08);
}

.pc-table th {
  color: var(--pc-text-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pc-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #00363f;
  background: linear-gradient(135deg, var(--pc-primary-container), var(--pc-primary-dim));
  font-size: 12px;
  font-weight: 900;
}
.pc-table-sub {
  margin-top: 4px;
  color: var(--pc-text-soft);
  font-size: 12px;
}

.pc-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-mini-button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(160, 220, 255, 0.10);
  border-radius: 999px;
  color: var(--pc-text);
  background: rgba(255,255,255,0.055);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.pc-textarea,
.pc-select {
  width: 100%;
  color: var(--pc-text);
  border-radius: 18px;
  border: 1px solid rgba(160, 220, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.pc-textarea {
  min-height: 150px;
  resize: vertical;
  padding: 15px 16px;
}

.pc-select {
  min-height: 52px;
  padding: 0 14px;
}
.pc-log-details summary {
  cursor: pointer;
  color: var(--pc-primary-container);
  font-weight: 800;
}

.pc-log-details pre {
  max-width: 520px;
  max-height: 180px;
  overflow: auto;
  margin: 10px 0 0;
  padding: 12px;
  color: var(--pc-text-muted);
  white-space: pre-wrap;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(160, 220, 255, 0.08);
}