.manageProductPage {
  width: 100%;
  margin: 0 auto;
}

.sectionTitle {
  text-align: center;
  margin: 0;
}

.backButton {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #e6eef6;
  background: #0f1828;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
}

.backButton:hover {
  background: #16233a;
}

.productMetaCard {
  margin: 0;
  padding: 18px;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

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

.productMetaItem {
  background: #0f1828;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.productMetaLabel {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.productMetaValue {
  font-size: 0.9rem;
  color: #e6eef6;
  word-break: break-word;
}

.productMetaValue--badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(45, 145, 184, 0.15);
  color: #2d8ab6;
  font-weight: 600;
}

.productMetaValue--mono {
  font-family: monospace;
  font-size: 0.85rem;
  opacity: 0.9;
}

.productEditForm {
  background: #0f1828;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.productEditForm label {
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  margin-top: 14px;
}

.productEditForm input,
.productEditForm textarea,
.productEditForm select {
  width: 100%;
  padding: 10px 13px;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 8px;
  font-size: 0.95rem;
  resize: vertical;
}

.productEditForm input:focus,
.productEditForm textarea:focus,
.productEditForm select:focus {
  border-color: var(--accent);
  outline: none;
}

.productButtons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.productButtons button {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.productButtons .secondary {
  background: #d03737;
}

.productButtons .secondary:hover {
  background: #b62f2f;
}

#actionButtons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

#actionButtons button {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}

#acceptButton {
  background: #2db86c;
}

#acceptButton:hover {
  background: #29a85e;
}

#declineButton {
  background: #d03737;
}

#declineButton:hover {
  background: #b82e2e;
}

#deleteButton {
  background: #8f2626;
}

#deleteButton:hover {
  background: #7a1f1f;
}

@media (max-width: 640px) {
  .backButton {
    justify-content: center;
    width: 100%;
  }

  .productButtons,
  #actionButtons {
    grid-template-columns: 1fr;
  }
}
