.embroidery-card {
  max-width: 640px;
  margin: 40px auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.embroidery-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.embroidery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.embroidery-grid label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.embroidery-grid input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.embroidery-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.embroidery-button {
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.embroidery-button:hover {
  background: #1e4ed8;
}

.embroidery-result {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 600px) {
  .embroidery-grid {
    grid-template-columns: 1fr;
  }
}
