/* GRID */

.actions-grid {
  display: grid;
  gap: 12px;
}

.actions-grid[data-columns="1"] {
  grid-template-columns: 1fr;
}

.actions-grid[data-columns="2"] {
  grid-template-columns: repeat(2, 1fr);
}

/* SPAN RULE */

.action-btn[data-span="2"] {
  grid-column: span 2;
}

/* BUTTON BASE */

.action-btn {
  height: 52px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .12s ease;
}

.action-btn:active {
  transform: scale(0.97);
}

/* THEME STYLES */

.style-primary {
  background: var(--color-primary);
  color: #fff;
}

.style-accent {
  background: var(--color-accent);
  color: #fff;
}

/* ===============================
   External Marketplace Actions
================================ */


.external-btn {
  width: 100%;
  height: 48px;

  border-radius: 12px;
  border: none;

  font-weight: 600;
  font-size: 15px;

  background: var(--color-surface);
  color: var(--color-primary);

  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: all .18s ease;
}

.external-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}


